Create build.yml

This commit is contained in:
dswd 2019-11-14 22:20:25 +01:00 committed by GitHub
parent 0f4a44fbd6
commit 0654e32c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose