Skip to content

Commit

Permalink
fix(CI): Use GO111MODULE=auto
Browse files Browse the repository at this point in the history
  • Loading branch information
ShubhamChaturvedi7 committed Dec 1, 2023
1 parent cf2bb36 commit 5df8644
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
with:
go-version: '1.15'
- name: Set up goimports
run: go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
run: GO111MODULE=auto go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtime-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
go-version: '1.15'
- name: Set up goimports
run: go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
run: GO111MODULE=auto go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
- name: Build Dafny
run: dotnet build Source/Dafny.sln
- name: Get Z3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
go-version: '1.15'
- name: Set up goimports
run: go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
run: GO111MODULE=auto go get golang.org/x/tools/cmd/goimports@release-branch.go1.15
- name: Build Dafny
run: dotnet build Source/Dafny.sln
- name: Get Z3
Expand Down

0 comments on commit 5df8644

Please sign in to comment.