2020-06-26 22:26:55 +00:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-06-09 08:11:23 +00:00
|
|
|
- main
|
2020-06-26 22:26:55 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
cleanup-runs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: rokroskar/workflow-run-cleanup-action@master
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
2021-06-09 08:11:23 +00:00
|
|
|
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"
|
2020-06-26 22:26:55 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 17:07:19 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-20 19:00:17 +00:00
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.17
|
2022-01-05 10:34:28 +00:00
|
|
|
- uses: technote-space/get-diff-action@v6.0.1
|
2020-07-28 14:04:06 +00:00
|
|
|
id: git_diff
|
|
|
|
with:
|
|
|
|
SUFFIX_FILTER: |
|
|
|
|
.go
|
|
|
|
.mod
|
|
|
|
.sum
|
2020-06-26 22:26:55 +00:00
|
|
|
- run: |
|
|
|
|
make build
|
2022-02-09 13:56:12 +00:00
|
|
|
if: env.GIT_DIFF
|