Add GHA, small clean

This commit is contained in:
arnau
2020-09-29 20:08:54 +02:00
committed by arnaucube
parent c89a44623d
commit df8530c24d
6 changed files with 22 additions and 28 deletions

13
.github/workflows/rust.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