Skip to content

Commit 8a7d546

Browse files
authored
Removing go.mod for v3 releases (#26)
* Removing `go.mod` for the v3-release branch As discussed in full length here (#17), we have run into issues that forces us to abandon go modules, at least for the `v3.x.x` releases. After this is merged in, we can release a `v3.2.1+incompatible` version, which contains a security fix. Afterwards, we will work on non-breaking quality of life fixes and then eventually run a `v4` version, which most likely will then support go modules and have a new SIV-style import path. * Cloning into $GOPATH for GitHub actions
1 parent 26c069a commit 8a7d546

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2
20+
with:
21+
path: src/github.com/golang-jwt/jwt
2022
- name: Setup Go
2123
uses: actions/setup-go@v2
2224
with:
@@ -26,3 +28,6 @@ jobs:
2628
go vet ./...
2729
go test -v ./...
2830
go build ./...
31+
env:
32+
GO111MODULE: auto
33+
GOPATH: ${{ github.workspace }}

go.mod

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)