panorama/.github/workflows/run-tests.yml

20 lines
310 B
YAML
Raw Normal View History

2021-02-23 04:50:39 +00:00
on: [push]
name: run-tests
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: run tests
run: |
cargo test --all