We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 151a8d9 commit c77fc70Copy full SHA for c77fc70
.github/workflows/ci.yml
@@ -16,8 +16,25 @@ env:
16
RUSTFLAGS: -D warnings -F unused_must_use
17
18
jobs:
19
+ clippy-build-std:
20
+ name: Clippy (-Zbuild-std)
21
+ runs-on: macos-latest
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ with:
25
+ persist-credentials: false
26
+
27
+ - uses: dtolnay/rust-toolchain@nightly
28
29
+ components: clippy
30
31
+ - name: Clippy (tvOS)
32
+ run: |
33
+ rustup component add rust-src --toolchain nightly-x86_64-apple-darwin
34
+ cargo +nightly clippy -Zbuild-std --target aarch64-apple-tvos
35
36
clippy:
- name: Clippy
37
+ name: Clippy (stable)
38
runs-on: ${{ matrix.os }}
39
strategy:
40
matrix:
0 commit comments