Restrict build machines to x64 to fix cargo-deny issues #296
This file contains hidden or 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: Continuous integration | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "LICENSE" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "LICENSE" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: [self-hosted, Linux, X64] | |
container: rust:1.80 | |
steps: | |
- name: Debug | |
run: echo ${{ github.ref_name }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Check format | |
run: | | |
rustup component add rustfmt | |
cargo fmt -- --check | |
- name: Run cargo deny | |
uses: EmbarkStudios/cargo-deny-action@v2 | |
- name: Run tests | |
run: cargo test --locked --no-fail-fast |