Create rust.yml

start simple, only build and run tools
This commit is contained in:
Lotte Steenbrink 2020-06-15 16:09:31 +02:00 committed by GitHub
parent b7297fa2ab
commit 76ad146e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build tools
working-directory: ./tools
run: cargo build --verbose
- name: test tools
working-directory: ./tools
run: cargo test --verbose