advent2021/.github/workflows/ci.yml

19 lines
345 B
YAML
Raw Permalink Normal View History

2021-12-06 19:26:14 +00:00
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