Skip to content

Commit c342ed4

Browse files
committed
add actions/setup-go to workflow
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 7f48df4 commit c342ed4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
- run: rustup target add wasm32-unknown-unknown
7878
if: matrix.lang == 'rust'
79-
79+
8080
- uses: ./.github/actions/install-wasi-sdk
8181

8282
- name: Setup .NET
@@ -85,6 +85,12 @@ jobs:
8585
dotnet-version: '9.x'
8686
if: matrix.lang == 'csharp'
8787

88+
- name: Setup Go
89+
uses: actions/setup-go@v5
90+
with:
91+
go-version: 1.25.4
92+
if: matrix.lang == 'go'
93+
8894
# Hacky work-around for https://github.com/dotnet/runtime/issues/80619
8995
- run: dotnet new console -o /tmp/foo
9096
if: matrix.os != 'windows-latest' && matrix.lang == 'csharp'

0 commit comments

Comments
 (0)