Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd2fdf4

Browse files
committedNov 14, 2022
Add setup Go step to unset env var check
1 parent b298af0 commit dd2fdf4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎.github/workflows/unset-environment-new-cli.yml

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ jobs:
4040
uses: ./.github/prepare-test
4141
with:
4242
version: ${{ matrix.version }}
43+
- uses: actions/setup-go@v3
44+
with:
45+
go-version: ^1.13.1
4346
- uses: ./../action/init
4447
with:
4548
db-location: ${{ runner.temp }}/customDbLocation

‎.github/workflows/unset-environment-old-cli.yml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
uses: ./.github/prepare-test
4040
with:
4141
version: ${{ matrix.version }}
42+
- uses: actions/setup-go@v3
43+
with:
44+
go-version: ^1.13.1
4245
- uses: ./../action/init
4346
with:
4447
languages: csharp,cpp,go,javascript,python

0 commit comments

Comments
 (0)
Please sign in to comment.