Add GHA to check Tests

This commit is contained in:
arnaucube
2020-11-07 10:50:46 +01:00
parent 1ecfa34cd9
commit 7bd8c5d4bd
2 changed files with 14 additions and 1 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