Skip to content

Commit

Permalink
Bump MSRV in github actions as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Oct 15, 2024
1 parent 4d438c5 commit 0a88f97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["1.70.0", nightly, beta]
rust: ["1.79.0", nightly, beta]
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@nightly
if: ${{ matrix.rust == '1.70.0' }}
if: ${{ matrix.rust == '1.79.0' }}
- name: Generate Cargo.lock with minimal-version dependencies
if: ${{ matrix.rust == '1.70.0' }}
if: ${{ matrix.rust == '1.79.0' }}
run: cargo -Zminimal-versions generate-lockfile

- uses: dtolnay/rust-toolchain@v1
Expand All @@ -58,7 +58,7 @@ jobs:
- name: build
run: cargo build -v
- name: test
if: ${{ matrix.rust != '1.70.0' }}
if: ${{ matrix.rust != '1.79.0' }}
run: cargo test -v && cargo doc -v

test_other_archs:
Expand Down

0 comments on commit 0a88f97

Please sign in to comment.