We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da62b03 commit a5dfc7eCopy full SHA for a5dfc7e
.github/workflows/rust.yml
@@ -25,6 +25,14 @@ jobs:
25
run: cargo test --verbose --all-features --all
26
- name: Build Examples
27
run: cargo build --examples --all-features --all
28
+ msrv:
29
+ name: Minimum Supported Rust Version
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v3
33
+ - run: rustup toolchain add 1.63
34
+ - name: Build
35
+ run: cargo +1.63 check --lib --all-features
36
clippy:
37
name: Clippy
38
runs-on: ubuntu-latest
0 commit comments