We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742371d commit ab94c58Copy full SHA for ab94c58
.github/workflows/ci_codegen.yml
@@ -18,6 +18,7 @@ jobs:
18
# in this workflow
19
dotnet-version: ["6.0.x"]
20
os: [ubuntu-22.04]
21
+ go-version: [1.23]
22
runs-on: ${{ matrix.os }}
23
defaults:
24
run:
@@ -49,6 +50,15 @@ jobs:
49
50
with:
51
dotnet-version: ${{ matrix.dotnet-version }}
52
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
62
- name: Create temporary global.json
63
run: echo '{"sdk":{"rollForward":"latestFeature","version":"6.0.0"}}' > ./global.json
64
0 commit comments