advent2021/.github/workflows/ci.yml
2021-12-06 14:26:14 -05:00

19 lines
345 B
YAML

on: [push]
name: Unit tests
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test