Files
bang/.github/workflows/builder.yml
Workflow config file is invalid. Please check your config file: yaml: line 4: mapping values are not allowed in this context

32 lines
567 B
YAML

name: Matrix
on:
pull_request
push:
branches:
- main
- 'releases/**'
jobs:
strategy:
matrix:
rust:
- stable
- beta
- nightly
main:
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
- run: cargo fmt --all -- --check
- run: cargo test