diff options
author | Catena cyber <35799796+catenacyber@users.noreply.github.com> | 2021-02-16 14:01:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 22:01:58 +0900 |
commit | 323de98a4c3eec4833941969faf9fb0a0e6f43ab (patch) | |
tree | 5faffa75f251e1a9a9ff9507880f6f9dd3e76d96 | |
parent | Adds a fuzz target (#908) (diff) | |
download | golite-323de98a4c3eec4833941969faf9fb0a0e6f43ab.tar.gz golite-323de98a4c3eec4833941969faf9fb0a0e6f43ab.tar.xz |
Go get go-acc with environment variable for go modules (#915)
* Go get go-acc with environment variable for go modules
* Go get with modules for windows as well
-rw-r--r-- | .github/workflows/go.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 3ef6e38..1c86d2a 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -29,7 +29,7 @@ jobs: - name: Get Build Tools run: | - go get github.com/ory/go-acc + GO111MODULE=on go get github.com/ory/go-acc - name: Add $GOPATH/bin to $PATH run: | @@ -83,7 +83,7 @@ jobs: - name: Get Build Tools run: | - go get -u github.com/ory/go-acc + GO111MODULE=on go get -u github.com/ory/go-acc shell: msys2 {0} - name: Add $GOPATH/bin to $PATH |