From db0d2e2cdaa11bd4135db854d2fce7b5defeb673 Mon Sep 17 00:00:00 2001 From: Nathaniel Waisbrot Date: Tue, 26 Dec 2023 19:52:49 -0500 Subject: [PATCH] Create go.yml automation --- .github/workflows/go.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 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..09b5947 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,32 @@ +name: Go + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + - name: Build + run: go build -v ./... + - name: Test + run: go test -v ./... + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Release + uses: fnkr/github-action-ghr@v1 + if: startsWith(github.ref, 'refs/tags/') + env: + GHR_COMPRESS: gz + GHR_PATH: birdweather_daily_email + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}