shadow/.github/workflows/test.yml
Josh 7000d60fde
Some checks failed
test / test (macos-latest) (push) Has been cancelled
test / test (ubuntu-latest) (push) Has been cancelled
test / test (windows-latest) (push) Has been cancelled
prep for putting repo on GH
2024-12-14 14:01:03 -06:00

33 lines
535 B
YAML

name: test
on:
pull_request:
push:
branches: [main]
workflow_call:
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose