Skip to content

Commit

Permalink
Build on Go 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bdwyertech committed Sep 18, 2021
1 parent 08a6100 commit 15d4f42
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Build
strategy:
matrix:
go: [1.16]
go: [1.17]
runs-on: ubuntu-latest
container: golang:${{ matrix.go }}
steps:
Expand All @@ -33,7 +33,7 @@ jobs:
go test -v -race $(go list ./... | grep -v /vendor/)
- name: Run GoReleaser
if: startsWith(github.ref, 'refs/tags/') && (matrix.go == 1.16)
if: startsWith(github.ref, 'refs/tags/') && (matrix.go == 1.17)
uses: goreleaser/goreleaser-action@v2
with:
version: latest
Expand Down
1 change: 1 addition & 0 deletions pkg/helpers_darwin.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build darwin
// +build darwin

package ntlm_proxy
Expand Down
1 change: 1 addition & 0 deletions pkg/helpers_other.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !darwin && !windows
// +build !darwin,!windows

package ntlm_proxy
Expand Down
1 change: 1 addition & 0 deletions pkg/helpers_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package ntlm_proxy
Expand Down
1 change: 1 addition & 0 deletions pkg/service_other.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package ntlm_proxy
Expand Down
1 change: 1 addition & 0 deletions pkg/service_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

// Windows Service Handler
Expand Down

0 comments on commit 15d4f42

Please sign in to comment.