Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Raise minimum tested version to rustc 1.45
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 11, 2020
1 parent e8e40e6 commit d24b924
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.31.0]
rust: [nightly, beta, stable, 1.45.0]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
Expand All @@ -21,6 +21,14 @@ jobs:
- run: cargo build
- run: cargo test

msrv:
name: Rust 1.31.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@1.31.0
- run: cargo check

clippy:
name: Clippy
runs-on: ubuntu-latest
Expand Down

0 comments on commit d24b924

Please sign in to comment.