27 lines
726 B
YAML
27 lines
726 B
YAML
name: Go Action
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest # Use a Gitea Actions runner label
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4 # Action to clone the repo
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5 # Action to install a specific Go version
|
|
with:
|
|
go-version: '1.25.5' # Specify your required Go version
|
|
|
|
- name: Run golangci-lint
|
|
uses: golangci/golangci-lint-action@v3 # Use the golangci-lint action
|
|
with:
|
|
version: v2.7.2 # Specify the linter version
|
|
# Optional: additional arguments
|
|
args: --verbose
|
|
|
|
- name: Test with the Go CLI
|
|
run: go test ./...
|
|
|