Update rust.yml

Original commit: 62c39f00a8
This commit is contained in:
Wojciech Daniło 2019-10-07 13:28:34 +02:00 committed by GitHub
parent ccea9f8907
commit 7564e532bb

15
gui/.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