From e0c48d5051f19f69269bf081c8ed93ab3cf2788f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 26 Feb 2022 23:23:15 +0000 Subject: [PATCH] Configure Github Actions to automatically run tests --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..db07fc0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.17 + - name: Build + run: go build -v ./... + - name: Test + run: go test -v ./...