From 3353a7fa89c7f56489b33c145a63b7b633e0fb5f Mon Sep 17 00:00:00 2001 From: cohenarthur Date: Thu, 9 Apr 2020 11:40:30 +0200 Subject: [PATCH] ci: Add unit tests CI --- .github/workflows/unit.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/unit.yml diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml new file mode 100644 index 0000000..d301555 --- /dev/null +++ b/.github/workflows/unit.yml @@ -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