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 d1f9e57 commit af06f15Copy full SHA for af06f15
.github/workflows/ci.yml
@@ -63,3 +63,22 @@ jobs:
63
64
- name: Check formatting
65
run: cargo fmt --all -- --check
66
+
67
+ lint-build:
68
+ name: lint-build
69
+ runs-on: ubuntu-latest
70
+ timeout-minutes: 10
71
+ steps:
72
+ - name: Checkout repository
73
+ uses: actions/checkout@v4
74
75
+ - name: Install Rust toolchain
76
+ uses: dtolnay/rust-toolchain@stable
77
+ with:
78
+ toolchain: stable
79
+ components: clippy
80
81
+ - name: Run linter
82
+ run: cargo clippy --workspace
83
84
+ - run: cargo build
0 commit comments