Skip to content

ci

ci #1028

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
schedule: [cron: "40 1 * * *"]
name: ci
jobs:
# build, test all supported targets
build-test-stable:
runs-on: ubuntu-latest
strategy:
matrix:
targets:
- x86_64-unknown-linux-gnu
- armv7-unknown-linux-gnueabihf
#- aarch64-linux-android
- aarch64-unknown-linux-gnu
toolchain:
- stable
# msrv
- 1.64.0
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
target: ${{ matrix.targets }}
- uses: Swatinem/rust-cache@v2
- run: cargo install cargo-quickinstall
- run: cargo quickinstall [email protected] --force
- run: cross build --locked --workspace --target ${{ matrix.targets }}
- run: cross test --locked --workspace --target ${{ matrix.targets }}
# fmt and clippy on nightly builds
fmt-clippy-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
target: x86_64-unknown-linux-gnu
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all --check
- run: cargo clippy --workspace -- -D warnings