Skip to content

Commit

Permalink
sixth commit
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsoul44 committed Jun 7, 2024
1 parent d871f80 commit 2da3358
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Update TOML
run: python scripts/remove-optional-deps.py
- name: Build test data
run: python scripts/make_resources.py
run: |
cd python-package
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build Wheels with maturin
Expand Down Expand Up @@ -73,7 +77,11 @@ jobs:
- name: Update TOML
run: python scripts/remove-optional-deps.py
- name: Build test data
run: python scripts/make_resources.py
run: |
cd python-package
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build Wheels with maturin
Expand Down Expand Up @@ -122,7 +130,11 @@ jobs:
- name: Update TOML
run: python scripts/remove-optional-deps.py
- name: Build test data
run: python scripts/make_resources.py
run: |
cd python-package
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build Wheels with maturin
Expand Down Expand Up @@ -168,7 +180,11 @@ jobs:
- name: Update TOML
run: python scripts/remove-optional-deps.py
- name: Build test data
run: python scripts/make_resources.py
run: |
cd python-package
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- if: "startsWith(github.ref, 'refs/tags/')"
Expand Down

0 comments on commit 2da3358

Please sign in to comment.