Files
bang/.github/workflows/builder.yml
Adam Wick dd402d13c7
Some checks failed
Matrix / strategy (pull_request) Failing after 0s
Matrix / ${{matrix.rust}} (pull_request) Failing after 1s
Foo2
2025-11-26 15:24:26 -08:00

31 lines
546 B
YAML

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