This commit is contained in:
arnau
2020-09-29 20:08:54 +02:00
committed by arnaucube
parent c89a44623d
commit 32fef3fcfa
4 changed files with 15 additions and 11 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