mod: bump github.com/bradleyfalzon/ghinstallation/v2 from 2.9.0 to 2.10.0 #100
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: [ main ] | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '.golangci.yml' | |
- '.github/workflows/go.yml' | |
pull_request: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '.golangci.yml' | |
- '.github/workflows/go.yml' | |
env: | |
GOPROXY: "https://proxy.golang.org" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: latest | |
args: --timeout=30m | |
- name: Check Go module tidiness | |
shell: bash | |
run: | | |
go mod tidy | |
STATUS=$(git status --porcelain go.mod go.sum) | |
if [ ! -z "$STATUS" ]; then | |
echo "Running go mod tidy modified go.mod and/or go.sum" | |
exit 1 | |
fi | |
test: | |
name: Test | |
strategy: | |
matrix: | |
go-version: [ 1.22.x ] | |
platform: [ ubuntu-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: go test -v -race ./... |