Skip to content

Bump goreleaser/goreleaser-action from 5 to 6 (#69) #157

Bump goreleaser/goreleaser-action from 5 to 6 (#69)

Bump goreleaser/goreleaser-action from 5 to 6 (#69) #157

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run tests
run: make testacc