From 09009a7c4138dc969837dca506cf12a58f5d2f1d Mon Sep 17 00:00:00 2001 From: MedzikUser <87065584+MedzikUser@users.noreply.github.com> Date: Sat, 14 Aug 2021 22:33:11 +0200 Subject: [PATCH] add github workflows --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..c96e640 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: Test + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + + - name: Test + run: go test -v ./...