treewide: group import statements std, external, crate #26
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '34 11 * * 2' | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
# Make sure cargo commands not only fail on hard errors but also on warnings | |
# so we do not accidentally miss newly introduced warnings. | |
RUSTFLAGS: -D warnings | |
jobs: | |
build-and-test: | |
strategy: | |
fail-fast: false # Run against all versions even if one fails | |
matrix: | |
version: | |
- "1.75" # Yocto scarthgap | |
- "1.79" # Yocto styhead | |
- "1.81" # OSELAS.Toolchain v2024.11.0 | |
- "stable" | |
- "nightly" | |
name: cargo build && cargo test | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install ${{ matrix.version }} | |
- run: rustup run ${{ matrix.version }} cargo build --verbose | |
- run: rustup run ${{ matrix.version }} cargo test --verbose | |
clippy: | |
strategy: | |
matrix: | |
features: | |
- "" | |
- "--tests" | |
name: cargo clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install stable | |
- run: cargo clippy ${{ matrix.features }} | |
fmt: | |
name: cargo fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup toolchain install nightly | |
- run: cargo +nightly fmt --all -- --check |