File tree 3 files changed +36
-17
lines changed
3 files changed +36
-17
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [main, test]
7
+
8
+ jobs :
9
+ pre-commit :
10
+ name : Lint
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-python@v5
15
+ with :
16
+ python-version : ' 3.11'
17
+ - uses : pre-commit/action@v3.0.1
18
+ test :
19
+ name : Test
20
+ runs-on : ubuntu-latest
21
+ strategy :
22
+ matrix :
23
+ python-version : ["3.9", "3.10", "3.11"]
24
+ steps :
25
+ - uses : actions/checkout@v4
26
+ - name : Set up Python ${{ matrix.python-version }}
27
+ uses : actions/setup-python@v5
28
+ with :
29
+ python-version : ${{ matrix.python-version }}
30
+ - name : Install dependencies
31
+ run : |
32
+ python -m pip install --upgrade pip
33
+ python -m pip install '.[dev]'
34
+ - run : pytest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ [ ![ CI] ( https://github.com/sgkit-dev/bio2zarr/actions/workflows/ci.yml/badge.svg?branch=main )] ( https://github.com/sgkit-dev/bio2zarr/actions/workflows/ci.yml )
2
+
1
3
# bio2zarr
2
4
Convert bioinformatics file formats to Zarr
3
5
You can’t perform that action at this time.
0 commit comments