Skip to content

Merge pull request #237 from twpayne/dependabot/go_modules/github.com… #72

Merge pull request #237 from twpayne/dependabot/go_modules/github.com…

Merge pull request #237 from twpayne/dependabot/go_modules/github.com… #72

Workflow file for this run

name: main
on:
pull_request:
push:
env:
GOFUMPT_VERSION: 0.3.1
GOLANGCI_LINT_VERSION: 1.49.0
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race -tags=docker ./...
- name: Check formatting
run: |
make format
git diff --exit-code
- name: Check generate
run: |
make generate
git diff --exit-code
darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race ./...
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923
with:
cache: true
go-version-file: go.mod
- name: build
run: go build ./...
- name: test
run: go test -race ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923
with:
cache: true
go-version-file: go.mod
- uses: golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc
with:
version: v${{ env.GOLANGCI_LINT_VERSION }}
- name: format
run: make format