Some checks failed
Matrix / nightly (push) Failing after 8s
Matrix / beta (push) Failing after 9s
Matrix / stable (push) Failing after 16s
Matrix / nightly (pull_request) Failing after 0s
Matrix / beta (pull_request) Failing after 21s
Matrix / stable (pull_request) Failing after 5s
27 lines
558 B
YAML
27 lines
558 B
YAML
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@v6
|
|
- uses: dtolnay/rust-toolchain@master
|
|
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
|