From fc53d0dda31fffd54f097a114ed677a66f2291d9 Mon Sep 17 00:00:00 2001 From: Grzegorz Dlugoszewski Date: Thu, 11 Jun 2020 17:18:51 +0200 Subject: [PATCH] Add github action for running unit tests --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8a133ef --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,14 @@ +name: test + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.14 + - name: Run go test + run: go test ./... \ No newline at end of file