19 lines
345 B
YAML
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
|