Skip to content

Commit 6fa3383

Browse files
committed
tvOS Clippy CI Check
1 parent c43f2cf commit 6fa3383

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/ci.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,25 @@ env:
1616
RUSTFLAGS: -D warnings -F unused_must_use
1717

1818
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+
with:
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+
1936
clippy:
20-
name: Clippy
37+
name: Clippy (stable)
2138
runs-on: ${{ matrix.os }}
2239
strategy:
2340
matrix:

0 commit comments

Comments
 (0)