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