This commit is contained in:
arnau
2020-07-22 20:03:17 +02:00
committed by arnaucube
parent e8d6a3aeae
commit 290e40a9d4
3 changed files with 15 additions and 10 deletions

13
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose