mirror of
https://github.com/Skallwar/suckit.git
synced 2026-09-10 07:16:19 -04:00
ci: Add unit tests CI
This commit is contained in:
parent
a6bd14a323
commit
3353a7fa89
24
.github/workflows/unit.yml
vendored
Normal file
24
.github/workflows/unit.yml
vendored
Normal 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
|
||||
Loading…
Reference in a new issue