meta: GH-based build

This commit is contained in:
Kat Marchán 2019-08-31 20:19:25 -07:00 committed by GitHub
parent db7e33d67f
commit 4f34257f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

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

@ -0,0 +1,19 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Components
run: rustup component add clippy
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose