File tree Expand file tree Collapse file tree 3 files changed +36
-17
lines changed Expand file tree Collapse file tree 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/[email protected] 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+
13# bio2zarr
24Convert bioinformatics file formats to Zarr
35
You can’t perform that action at this time.
0 commit comments