mirror of
https://github.com/danog/parser.git
synced 2024-12-03 09:57:45 +01:00
17 lines
296 B
YAML
17 lines
296 B
YAML
name: Tests
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
tests:
|
|
name: Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: -q |