Update readme, use cooler screenshot #430
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check native builds | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
check: | |
strategy: | |
matrix: | |
target: [ | |
"aarch64-apple-darwin", | |
"aarch64-pc-windows-msvc", | |
"aarch64-unknown-linux-gnu", | |
] | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install target | |
run: rustup target add ${{ matrix.target }} | |
- name: Check | |
run: cargo check --target=${{ matrix.target }} --all-targets --verbose | |
- name: Clippy | |
run: cargo clippy --target=${{ matrix.target }} --all-targets --verbose |