Skip to content

Commit

Permalink
Add MSRV checking in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Sep 29, 2023
1 parent b88c07e commit f7f294f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ jobs:
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- -D warnings

MSRV:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.58.0"
- run: cargo check --lib -p askama --all-features

Audit:
runs-on: ubuntu-22.04
steps:
Expand Down

0 comments on commit f7f294f

Please sign in to comment.