We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cd73d7 commit 80fff6bCopy full SHA for 80fff6b
.github/workflows/CICD.yml
@@ -44,6 +44,16 @@ jobs:
44
- uses: actions/checkout@v4
45
- run: cargo fmt -- --check
46
47
+ lint_check:
48
+ name: Ensure 'cargo clippy' has no warnings
49
+ runs-on: ubunut-latest
50
+ steps:
51
+ - uses: dtolnay/rust-toolchain@stable
52
+ with:
53
+ components: clippy
54
+ - uses: actions/checkout@v4
55
+ - run: cargo clippy --all-targets --all-features -- -Dwarnings
56
+
57
min_version:
58
name: Minimum supported rust version
59
runs-on: ubuntu-20.04
0 commit comments