ci: Add unit tests CI

This commit is contained in:
cohenarthur 2020-04-09 11:40:30 +02:00
parent a6bd14a323
commit 3353a7fa89

24
.github/workflows/unit.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: SuckIT Unit Tests CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build SuckIT
run: |
cargo build
- name: Run unit tests
run: |
cargo test