Skip to content

WIP Run tests via GitHub Actions #2

WIP Run tests via GitHub Actions

WIP Run tests via GitHub Actions #2

Workflow file for this run

name: Run tests
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
PROJECT_NAME: "outlaw-format"
jobs:
test:
name: Test suite
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose