Play with strategies and such.

This commit is contained in:
2025-11-26 15:18:46 -08:00
parent d597cacb2d
commit 3fd0ef52b9

View File

@@ -1,15 +1,20 @@
name: Matrix name: Matrix
on: on:
- pull_request pull_request
- push push:
branches:
- main
- 'releases/**'
jobs: jobs:
main:
strategy: strategy:
matrix: matrix:
rust: rust:
- stable - stable
- beta - beta
- nightly - nightly
main:
name: ${{matrix.rust}} name: ${{matrix.rust}}
runs-on: x86_64-linux runs-on: x86_64-linux
steps: steps:
@@ -21,6 +26,6 @@ jobs:
- run: rustup --version - run: rustup --version
- run: rustc -vV - run: rustc -vV
- run: cargo clippy -- --deny clippy::pedantic - run: cargo clippy
- run: cargo fmt --all -- --check - run: cargo fmt --all -- --check
- run: cargo test - run: cargo test