Bump actions/checkout from 3.5.3 to 4.1.0 #275
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: Standard checks | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- nightly | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
target: aarch64-unknown-linux-gnu | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --all-features | |
- name: Build on target without native cpuid | |
uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --target aarch64-unknown-linux-gnu | |
- uses: actions-rs/[email protected] | |
with: | |
command: test | |
args: --all-features --all-targets | |
- uses: actions-rs/[email protected] | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Run clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |