Skip to content

Commit

Permalink
refactor ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzocerrone committed Sep 23, 2024
1 parent 0ae076b commit c91d695
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 40 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,30 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: /home/runner/work/ngio/ngio/coverage.xml

zarrv3:
name: Test zarr-python v3 compatibility
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache-dependency-path: "pyproject.toml"
cache: "pip"

- name: Install Dependencies
run: |
python -m pip install -U pip
# if running a cron job, we add the --pre flag to test against pre-releases
python -m pip install .[dev3] ${{ github.event_name == 'schedule' && '--pre' || '' }}
- name: 🧪 Run Tests
run: pytest
continue-on-error: true

deploy:
name: Deploy
needs: test
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/v3_ci.yml

This file was deleted.

0 comments on commit c91d695

Please sign in to comment.