Skip to content

Commit ab94c58

Browse files
auto commit
1 parent 742371d commit ab94c58

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci_codegen.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
# in this workflow
1919
dotnet-version: ["6.0.x"]
2020
os: [ubuntu-22.04]
21+
go-version: [1.23]
2122
runs-on: ${{ matrix.os }}
2223
defaults:
2324
run:
@@ -49,6 +50,15 @@ jobs:
4950
with:
5051
dotnet-version: ${{ matrix.dotnet-version }}
5152

53+
- name: Install Go
54+
uses: actions/setup-go@v5
55+
with:
56+
go-version: ${{ matrix.go-version }}
57+
58+
- name: Install Go imports
59+
run: |
60+
go install golang.org/x/tools/cmd/goimports@latest
61+
5262
- name: Create temporary global.json
5363
run: echo '{"sdk":{"rollForward":"latestFeature","version":"6.0.0"}}' > ./global.json
5464

0 commit comments

Comments
 (0)