From 8185d888ab90f349cb06af17d2aff97efe7d58f8 Mon Sep 17 00:00:00 2001 From: Robert Kruszewski Date: Wed, 31 Jul 2024 16:28:07 +0100 Subject: [PATCH 1/3] try this --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f69203947..e51d68845c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,8 +43,8 @@ jobs: - name: Rust Build run: cargo build --all-features --all-targets - - name: License Check - run: cargo install --locked cargo-deny && cargo deny check + - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: rustsec/audit-check@v1.4.1 with: token: ${{ secrets.GITHUB_TOKEN }} From 29aa99817191faf06184839e130f289345108830 Mon Sep 17 00:00:00 2001 From: Robert Kruszewski Date: Wed, 31 Jul 2024 16:30:32 +0100 Subject: [PATCH 2/3] with --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e51d68845c..dd7b5ab5d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,8 @@ jobs: run: cargo build --all-features --all-targets - uses: EmbarkStudios/cargo-deny-action@v1 + with: + rust-version: "${{ steps.rust-version.outputs.version }}" - uses: rustsec/audit-check@v1.4.1 with: From 8470e503f4df9504e7a0e5c9b60ecd3b312b051c Mon Sep 17 00:00:00 2001 From: Robert Kruszewski Date: Wed, 31 Jul 2024 16:46:29 +0100 Subject: [PATCH 3/3] less --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd7b5ab5d6..931ca723aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,18 +43,16 @@ jobs: - name: Rust Build run: cargo build --all-features --all-targets - - uses: EmbarkStudios/cargo-deny-action@v1 - with: - rust-version: "${{ steps.rust-version.outputs.version }}" + - 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/audit-check@v1.4.1 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