From 1a8aca7433b475828ac6920e3495249a84952395 Mon Sep 17 00:00:00 2001 From: Nikita Date: Sat, 5 Feb 2022 13:20:50 +0300 Subject: [PATCH] actions: add --- .github/workflows/go.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..d958b85 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,17 @@ +name: Go + +on: [push, pull_request] + +jobs: + build: + 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 ./... \ No newline at end of file