chore(deps): update int128/go-workflows action to v0.4.0 - autoclosed #1706
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: go | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- .github/workflows/go.yaml | ||
- pkg/** | ||
- tools/** | ||
- go.* | ||
tags: | ||
- v* | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- .github/workflows/go.yaml | ||
- pkg/** | ||
- tools/** | ||
- go.* | ||
jobs: | ||
check: | ||
uses: int128/go-workflows/.github/workflows/[email protected] | ||
Check failure on line 25 in .github/workflows/go.yaml GitHub Actions / goInvalid workflow file
|
||
with: | ||
go-version: 1.23.1 | ||
golangci-lint-version: v1.61.0 | ||
test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.23.1 | ||
- run: go test -v -race ./... | ||
generate: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: tools/go.mod | ||
cache-dependency-path: tools/go.sum | ||
- run: make generate | ||
- uses: int128/update-generated-files-action@v2 |