Skip to content

chore(deps): bump uraimo/run-on-arch-action from 2.7.2 to 2.8.1 #69

chore(deps): bump uraimo/run-on-arch-action from 2.7.2 to 2.8.1

chore(deps): bump uraimo/run-on-arch-action from 2.7.2 to 2.8.1 #69

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo build --all-features --verbose
- run: cargo test --all-features --verbose
- run: cargo install cargo-all-features
- run: cargo check-all-features --verbose
- run: cargo build-all-features --verbose
- run: cargo test-all-features --verbose
rustfmt:
name: Check Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: rustup update stable && rustup default stable
- run: rustup component add rustfmt
- run: cargo fmt --all --check
build_docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: rustup update nightly && rustup default nightly
- run: cargo +nightly doc --all-features --no-deps