From 3fd0ef52b976246f1fc95c83b498222e5a46d5fa Mon Sep 17 00:00:00 2001 From: Adam Wick Date: Wed, 26 Nov 2025 15:18:46 -0800 Subject: [PATCH] Play with strategies and such. --- .github/workflows/builder.yml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index df74f30..d52d99d 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -1,15 +1,20 @@ name: Matrix on: - - pull_request - - push + pull_request + push: + branches: + - main + - 'releases/**' + jobs: + strategy: + matrix: + rust: + - stable + - beta + - nightly + main: - strategy: - matrix: - rust: - - stable - - beta - - nightly name: ${{matrix.rust}} runs-on: x86_64-linux steps: @@ -21,6 +26,6 @@ jobs: - run: rustup --version - run: rustc -vV - - run: cargo clippy -- --deny clippy::pedantic + - run: cargo clippy - run: cargo fmt --all -- --check - run: cargo test