Use GitHub actions for CI

This commit is contained in:
Carl Lerche
2020-04-15 12:28:40 -07:00
committed by GitHub
parent 81888e36b5
commit f855dc5d50

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

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