Files
bang/.github/workflows/builder.yml
Adam Wick 60c0dcf35f
Some checks failed
Matrix / beta (push) Failing after 1s
Matrix / nightly (push) Failing after 1s
Matrix / stable (push) Failing after 1s
Matrix / beta (pull_request) Failing after 1s
Matrix / nightly (pull_request) Failing after 1s
Matrix / stable (pull_request) Failing after 1s
Yay CI fails.
2025-11-24 18:58:11 -08:00

31 lines
864 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:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- 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