Skip to content

Commit

Permalink
Move the rust build stage to the end of CI (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGS authored Jul 18, 2024
1 parent 00e6f39 commit b40ba03
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-python

- name: Rust Build
run: cargo build --all-features --all-targets

- name: Python Lint - Format
run: rye run ruff format --check .
- name: Python Lint - Ruff
Expand All @@ -41,6 +38,8 @@ jobs:
run: cargo doc --no-deps
- name: Rust Test
run: cargo test --workspace --all-features
- name: Rust Build
run: cargo build --all-features --all-targets

- name: Pytest - PyVortex
run: rye run pytest --benchmark-disable test/
Expand Down

0 comments on commit b40ba03

Please sign in to comment.