Create rust.yml

This commit is contained in:
Cadey Ratio 2020-07-14 10:26:02 -04:00 committed by GitHub
parent d722ea9ede
commit 5cda8549ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Rust
on:
push: master
pull_request: master
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all
- name: Run tests
run: cargo test --all