Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mbwilding committed Jun 1, 2024
1 parent 74d21bb commit e7b45c7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/Validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
checks:
name: "Checks"
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-pc-windows-gnu
# - aarch64-pc-windows-gnu
# - x86_64-unknown-linux-gnu
# - x86_64-apple-darwin

steps:
- name: "Checkout"
Expand All @@ -23,7 +30,7 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
target: x86_64-pc-windows-gnu
target: ${{ matrix.target }}

- name: "Dependencies"
run: sudo apt-get install -y ${{ env.APT_PACKAGES }}
Expand All @@ -32,4 +39,4 @@ jobs:
run: cargo fmt -- --check

- name: "Clippy"
run: cargo clippy --target x86_64-pc-windows-gnu -- -D warnings
run: cargo clippy --target ${{ matrix.target }} -- -D warnings

0 comments on commit e7b45c7

Please sign in to comment.