start workflow

This commit is contained in:
Amber
2020-08-26 14:49:07 -04:00
committed by GitHub
parent d938db7e92
commit ce2f19019b

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

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