try-continue/.github/workflows/run-tests.yml

17 lines
330 B
YAML
Raw Normal View History

2021-11-28 01:57:26 +00:00
name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: build
run: cargo check
- run: cargo clippy --tests
- run: cargo test