Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 8 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
- name: Go CI
# You may pin to the exact commit or the version.
# uses: ghacts/go@f4993de229e57d20fc296c70a1570a4dfca88db1
- name: Go CI
uses: ghacts/go@v1.0.0
with:
# The path to the project
project-path: # optional, default is
# The version of Go to use
go-version: # optional, default is stable
# The version of golangci-lint to use
golang-ci-lint-version: # optional, default is latest
# Additional arguments for golangci-lint
golang-ci-lint-args: # optional, default is --timeout=10m
# Check whether to skip lint step
skip-lint: # optional
# Check whether to skip build step
skip-build: # optional
# Check whether to skip test step
skip-test: # optional

project-path: ./src/
go-version: '1.23.5'
golang-ci-lint-version: '1.51.0'
golang-ci-lint-args: '--timeout=5m --disable-all --enable=gofmt --enable=golint'
skip-lint: false
skip-build: false
skip-test: false