Skip to content

Commit

Permalink
tvOS Clippy CI Check
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEverson committed Apr 9, 2024
1 parent c43f2cf commit 6fa3383
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,25 @@ env:
RUSTFLAGS: -D warnings -F unused_must_use

jobs:
clippy-build-std:
name: Clippy (-Zbuild-std)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy

- name: Clippy (tvOS)
run: |
rustup component add rust-src --toolchain nightly-x86_64-apple-darwin
cargo +nightly clippy -Zbuild-std --target aarch64-apple-tvos
clippy:
name: Clippy
name: Clippy (stable)
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit 6fa3383

Please sign in to comment.