update-go-mod/.github/workflows/go.yml

58 lines
1.1 KiB
YAML
Raw Normal View History

2022-07-22 14:29:13 +00:00
name: Go
on:
push:
branches:
- main
2023-06-30 18:09:33 +00:00
paths:
- "**.go"
- "go.mod"
- "go.sum"
2022-07-22 14:29:13 +00:00
pull_request:
branches:
- main
2023-06-30 18:09:33 +00:00
paths:
- "**.go"
- "go.mod"
- "go.sum"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2022-07-22 14:29:13 +00:00
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
2022-07-22 14:29:13 +00:00
with:
2023-06-30 18:09:33 +00:00
go-version: "stable"
- run: go test -race -failfast ./...
2022-07-22 14:29:13 +00:00
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
2022-07-22 14:29:13 +00:00
with:
2023-06-30 18:09:33 +00:00
go-version: "stable"
2022-07-22 14:29:13 +00:00
- run: go build ./cmd/update-go-mod
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
2022-07-22 14:29:13 +00:00
with:
2023-06-30 18:09:33 +00:00
go-version: "stable"
2022-07-22 14:29:13 +00:00
- uses: golangci/golangci-lint-action@v3
with:
version: latest