From d06342049c699004d26fd7ca792e3cd909bb5946 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 24 Oct 2021 18:19:34 +0200 Subject: [PATCH] add GitHub Actions config --- .github/workflows/push.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..85e1ef0 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,30 @@ +name: Push + +on: + push: + branches: [ master ] + +jobs: + + build: + name: CI + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + # Run on the latest minor release of Go 1.17: + go-version: ^1.17 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Ensure all files were formatted as per gofmt + run: | + [ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ] + + - name: Build packages + run: | + go install -v ./...