Create rust.yml
This commit is contained in:
parent
d722ea9ede
commit
5cda8549ed
|
@ -0,0 +1,15 @@
|
|||
name: Rust
|
||||
on:
|
||||
push: master
|
||||
pull_request: master
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cargo build --all
|
||||
- name: Run tests
|
||||
run: cargo test --all
|
Loading…
Reference in New Issue