parser/.github/workflows/tests.yml

21 lines
344 B
YAML
Raw Normal View History

2022-07-16 21:45:04 +02:00
name: Tests
2022-07-26 11:45:12 +02:00
on:
- push
- pull_request
2022-07-16 21:45:04 +02:00
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
2022-07-16 21:45:54 +02:00
toolchain: nightly
2022-07-16 21:47:22 +02:00
override: true
2022-07-16 21:45:04 +02:00
- uses: actions-rs/cargo@v1
with:
command: test
2022-07-26 11:45:12 +02:00
args: -q