bartib/.github/workflows/test.yml
Nikolas Schmidt-Voigt 6324b802a3 fixed github action
2021-12-01 10:58:19 +01:00

23 lines
No EOL
372 B
YAML

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run tests
run: cargo test --verbose