Skip to content

Commit d1d3f9e

Browse files
Merge pull request #225 from jeromekelleher/more-py-vers
Run python3.9 on MacOS 13
2 parents 0470928 + 140181a commit d1d3f9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
python-version: ["3.9", "3.10", "3.11"]
2828
exclude:
2929
# Just run macos tests on one Python version
30-
- os: macos-13
31-
python-version: "3.9"
3230
- os: macos-13
3331
python-version: "3.10"
32+
- os: macos-13
33+
python-version: "3.11"
3434
- os: macos-14
3535
python-version: "3.9"
3636
- os: macos-14
@@ -45,6 +45,9 @@ jobs:
4545
run: |
4646
python -m pip install --upgrade pip
4747
python -m pip install '.[dev]'
48+
- name: Run basic vcf2zarr example
49+
run: |
50+
python -m bio2zarr vcf2zarr convert tests/data/vcf/sample.vcf.gz sample.vcz -f
4851
- name: Run tests
4952
run: |
5053
pytest --cov=bio2zarr
@@ -56,9 +59,6 @@ jobs:
5659
# This is a quick workaround for doing a proper "parallel" setup:
5760
# https://github.com/coverallsapp/github-action
5861
fail-on-error: false
59-
- name: Run basic vcf2zarr example
60-
run: |
61-
python -m bio2zarr vcf2zarr convert tests/data/vcf/sample.vcf.gz sample.vcz -f
6262

6363
packaging:
6464
name: Packaging

0 commit comments

Comments
 (0)