Skip to content

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1 (… #357

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1 (…

chore(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1 (… #357

Workflow file for this run

name: build
on:
push:
branches:
- "main"
tags:
- "v*"
pull_request:
jobs:
windowsTest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "stable"
- run: go test -v -race -count=1 ./...
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "stable"
- run: make ci
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.out
- uses: goreleaser/goreleaser-action@v5
if: success() && startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}