Compare commits

...

3 Commits

Author SHA1 Message Date
dswd 4c55897e8c
Update build.yml 2019-11-14 22:33:22 +01:00
dswd dc84de234a
Update build.yml 2019-11-14 22:31:08 +01:00
dswd 0654e32c23
Create build.yml 2019-11-14 22:20:25 +01:00
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