Skip to content

Commit

Permalink
Run license check at the end of CI (#530)
Browse files Browse the repository at this point in the history
Running cargo install this updating crates.io index causes maturin to
want to install new versions of packages even though nothing should have
changed. We sidestep this problem by running maturin before cargo deny
  • Loading branch information
robert3005 authored Jul 31, 2024
1 parent 3b25817 commit 5fb7142
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ jobs:
- name: Rust Build
run: cargo build --all-features --all-targets

- name: Pytest - PyVortex
run: rye run pytest --benchmark-disable test/
working-directory: pyvortex/

- name: License Check
run: cargo install --locked cargo-deny && cargo deny check
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Pytest - PyVortex
run: rye run pytest --benchmark-disable test/
working-directory: pyvortex/

miri:
name: 'miri'
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5fb7142

Please sign in to comment.