Create rust.yml

This commit is contained in:
btrepp 2019-12-12 19:45:20 +08:00 committed by GitHub
parent 5f631bb56b
commit 36702035fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,15 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose