Skip to content

Commit f653163

Browse files
committed
build: add GH action to install Go
Signed-off-by: deadprogram <[email protected]>
1 parent 999f1ac commit f653163

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
17+
- name: Set up Go
18+
uses: actions/setup-go@v5
19+
with:
20+
go-version: '1.22'
1721
- name: Update Homebrew
1822
if: matrix.llvm == 17 # needed as long as LLVM 17 is still fresh
1923
run: brew update
@@ -34,6 +38,10 @@ jobs:
3438
steps:
3539
- name: Checkout
3640
uses: actions/checkout@v4
41+
- name: Set up Go
42+
uses: actions/setup-go@v5
43+
with:
44+
go-version: '1.22'
3745
- name: Install LLVM
3846
run: |
3947
echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-${{ matrix.llvm }} main' | sudo tee /etc/apt/sources.list.d/llvm.list

0 commit comments

Comments
 (0)