mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-06 16:58:11 +08:00
This is pretty common when working through PRs and ends up causing tons of in-flight GitHub Actions workflows running because they aren't currently canceled when a new commit is added. This will cancel previous runs if a new commit is added on a branch (which is the behavior we had on CircleCI).
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
name: Go Check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
go-check:
|
|
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.19.x"
|
|
- name: Check that go.mod is tidy
|
|
uses: protocol/multiple-go-modules@v1.2
|
|
with:
|
|
run: |
|
|
go mod tidy
|
|
if [[ -n $(git ls-files --other --exclude-standard --directory -- go.sum) ]]; then
|
|
echo "go.sum was added by go mod tidy"
|
|
exit 1
|
|
fi
|
|
git diff --exit-code -- go.sum go.mod
|
|
- name: go fmt
|
|
if: always() # run this step even if the previous one failed
|
|
run: |
|
|
out=$(go fmt ./...)
|
|
if [[ -n "$out" ]]; then
|
|
echo "Files are not go-fmt-ed:"
|
|
echo "$out"
|
|
exit 1
|
|
fi
|
|
- name: go vet
|
|
if: always() # run this step even if the previous one failed
|
|
uses: protocol/multiple-go-modules@v1.2
|
|
with:
|
|
run: go vet ./...
|