58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
|
name: Go
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "**.go"
|
||
|
- "go.mod"
|
||
|
- "go.sum"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths:
|
||
|
- "**.go"
|
||
|
- "go.mod"
|
||
|
- "go.sum"
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: Test
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: "stable"
|
||
|
- run: go test -race -failfast ./...
|
||
|
build:
|
||
|
name: Build
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: "stable"
|
||
|
- run: go build ./cmd/populatedb
|
||
|
golangci-lint:
|
||
|
name: golangci-lint
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: "stable"
|
||
|
- uses: golangci/golangci-lint-action@v3
|
||
|
with:
|
||
|
version: latest
|