Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,19 @@ jobs:
golangci:
name: lint
runs-on: ubuntu-latest
env:
GOTOOLCHAIN: local
strategy:
matrix:
go: ['1.24']
go: ['1.23', '1.24']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4

- name: Tidy
run: go mod tidy

- name: Format
run: go fmt
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
GOTOOLCHAIN: local
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pires/go-proxyproto

go 1.24
go 1.23

require golang.org/x/net v0.39.0

Expand Down
Loading