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:
|
2021-05-12 10:39:54 +00:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2021-05-12 10:38:54 +00:00
|
|
|
- uses: technote-space/get-diff-action@v4.1.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
|
2020-07-28 14:04:06 +00:00
|
|
|
if: "env.GIT_DIFF != ''"
|