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 77579d3 commit e9dc1b9Copy full SHA for e9dc1b9
.github/workflows/ci.yml
@@ -16,6 +16,28 @@ env:
16
RUSTFLAGS: -D warnings -F unused_must_use
17
18
jobs:
19
+ check:
20
+ name: Check
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
+ - name: Check (tvOS)
34
+ if: matrix.os == 'macos-latest'
35
+ run: |
36
+ rustup component add rust-src --toolchain nightly-x86_64-apple-darwin
37
+ cargo +nightly -Zbuild-std check --target aarch64-apple-tvos
38
+ cargo +nightly -Zbuild-std check --target aarch64-apple-tvos-sim
39
+ cargo +nightly -Zbuild-std check --target x86_64-apple-tvos
40
41
clippy:
42
name: Clippy
43
runs-on: ${{ matrix.os }}
0 commit comments