From acbc62a170e5c8d045b0dc011a46f102dfb51127 Mon Sep 17 00:00:00 2001 From: Adam Wick Date: Mon, 24 Nov 2025 18:36:29 -0800 Subject: [PATCH] Try to get a builder going. --- .github/workflows/builder.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/builder.yml diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml new file mode 100644 index 0000000..033b959 --- /dev/null +++ b/.github/workflows/builder.yml @@ -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