Skip to content

Commit

Permalink
chore: try to set MSRV for the Clippy jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Oct 18, 2023
1 parent 29a771c commit bf285af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,21 +141,25 @@ jobs:
- run: cargo test --target ${{ matrix.target }} --no-default-features --features blst,multicore,blst-portable

clippy_check_blst:
needs: set-msrv
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
components: clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets --no-default-features --features blst,multicore -- -D warnings

clippy_check_pairing:
needs: set-msrv
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{needs.set-msrv.steps.msrv.outputs.MSRV}}
components: clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
Expand Down

0 comments on commit bf285af

Please sign in to comment.