Skip to content

Commit 10b9850

Browse files
author
Paulo Gomes
committed
Update to golang 1.17 in test runners
Signed-off-by: Paulo Gomes <[email protected]>
1 parent cddb9b1 commit 10b9850

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- name: checkout
1717
uses: actions/checkout@v2
18+
- name: Setup Go
19+
uses: actions/setup-go@v2
20+
with:
21+
go-version: 1.17.x
1822
- name: Restore go cache
1923
uses: actions/cache@v1
2024
with:
@@ -35,6 +39,10 @@ jobs:
3539
steps:
3640
- name: checkout
3741
uses: actions/checkout@v2
42+
- name: Setup Go
43+
uses: actions/setup-go@v2
44+
with:
45+
go-version: 1.17.x
3846
- name: Restore go cache
3947
uses: actions/cache@v1
4048
with:
@@ -43,6 +51,9 @@ jobs:
4351
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
4452
restore-keys: |
4553
${{ runner.os }}-go-
54+
- name: Ensure pkg-config is installed
55+
run: |
56+
apt install -y pkg-config
4657
- name: Run tests
4758
run: make test
4859
- name: Verify

0 commit comments

Comments
 (0)