Create rust.yml

This commit is contained in:
Mateusz Kaczanowski 2020-05-10 15:17:36 +02:00 committed by GitHub
parent eb59b39eb4
commit c4c17cae62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

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