Goodbye Travis...

This commit is contained in:
ChristianVisintin
2020-11-21 11:03:38 +01:00
parent 642a381a94
commit decd0e5134
4 changed files with 2 additions and 36 deletions

22
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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