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 30276cf commit 7d49d40Copy full SHA for 7d49d40
.github/workflows/ci_codegen.yml
@@ -17,6 +17,7 @@ jobs:
17
# Note dotnet is only used for formatting generated code
18
# in this workflow
19
dotnet-version: ["6.0.x"]
20
+ go-version: [1.23]
21
os: [ubuntu-latest]
22
runs-on: ${{ matrix.os }}
23
defaults:
@@ -60,6 +61,15 @@ jobs:
60
61
- name: Install Smithy-Dafny codegen dependencies
62
uses: ./.github/actions/install_smithy_dafny_codegen_dependencies
63
64
+ - name: Install Go
65
+ uses: actions/setup-go@v5
66
+ with:
67
+ go-version: ${{ matrix.go-version }}
68
+
69
+ - name: Install Go imports
70
+ run: |
71
+ go install golang.org/x/tools/cmd/goimports@latest
72
73
- uses: ./.github/actions/polymorph_codegen
74
with:
75
dafny: ${{ inputs.dafny }}
0 commit comments