Create rust.yml

This commit is contained in:
Harald Hoyer 2020-03-03 15:01:02 +01:00 committed by GitHub
parent ae6c01aab2
commit 648dc871c2
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@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose