glider/.github/workflows/build.yml

31 lines
1012 B
YAML
Raw Normal View History

name: Build
2021-09-14 00:56:10 +08:00
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2020-04-03 22:54:13 +08:00
- name: Checkout
uses: actions/checkout@v2
2021-09-14 00:56:10 +08:00
with:
fetch-depth: 0
- name: Get Go version
run: |
echo "GO_VERSION=$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | grep $(grep -P "go \d+\." go.mod | cut -d " " -f2) | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')" >> $GITHUB_ENV
2020-04-03 22:54:13 +08:00
- name: Set up Go
2021-02-06 00:26:58 +08:00
uses: actions/setup-go@v2
2020-04-03 22:54:13 +08:00
with:
2021-09-14 00:56:10 +08:00
go-version: ${{ env.GO_VERSION}}
- name: Test
run: go test -v .
2020-04-03 22:54:13 +08:00
- name: Build
2021-09-14 00:56:10 +08:00
run: go build -v .
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}