bartib/.github/workflows/test.yml

23 lines
372 B
YAML
Raw Normal View History

2021-12-01 09:55:26 +00:00
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
2021-12-01 09:58:19 +00:00
with:
toolchain: stable
2021-12-01 09:55:26 +00:00
- name: Run tests
run: cargo test --verbose