Skip to content

Commit

Permalink
CI: Run tests and clippy lints against 1.64.0
Browse files Browse the repository at this point in the history
criterion 0.4 now has an MSRV of 1.59 due to its dependencies, and pprof
has an MSRV of 1.64 due to its dependencies. This is a follow-on to
0c53a91.
  • Loading branch information
str4d committed Apr 10, 2023
1 parent 31f8680 commit 466fe63
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 @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.57.0
toolchain: 1.64.0
override: true
- name: Run tests
uses: actions-rs/cargo@v1
Expand All @@ -45,20 +45,20 @@ jobs:
args: --verbose

clippy-test:
name: Clippy (1.57.0)
name: Clippy (1.64.0)
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.57.0
toolchain: 1.64.0
components: clippy
override: true
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
name: Clippy (1.57.0)
name: Clippy (1.64.0)
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings

Expand Down

0 comments on commit 466fe63

Please sign in to comment.