Try to get a builder going.
Some checks failed
Matrix / beta (push) Failing after 5s
Matrix / nightly (push) Failing after 0s
Matrix / stable (push) Failing after 0s
Matrix / beta (pull_request) Failing after 2s
Matrix / nightly (pull_request) Failing after 1s
Matrix / stable (pull_request) Failing after 6s

This commit is contained in:
2025-11-24 18:36:29 -08:00
parent 2ef9ae8bdc
commit acbc62a170

26
.github/workflows/builder.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
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