Files
bang/.github/workflows/builder.yml
Adam Wick dfb88f0dd7
Some checks failed
Matrix / nightly (push) Failing after 10s
Matrix / stable (push) Failing after 10s
Matrix / beta (push) Failing after 13s
Matrix / beta (pull_request) Failing after 9s
Matrix / nightly (pull_request) Failing after 9s
Matrix / stable (pull_request) Failing after 9s
path found
2025-11-24 19:22:21 -08:00

27 lines
554 B
YAML

name: Matrix
on:
- pull_request
- push
jobs:
main:
strategy:
matrix:
rust:
- stable
- beta
- nightly
name: ${{matrix.rust}}
runs-on: x86_64-linux
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{matrix.rust}}
components: rustfmt, clippy
- run: rustup --version
- run: rustc -vV
- run: cargo clippy -- --deny clippy::pedantic
- run: cargo fmt --all -- --check
- run: cargo test