Skip to content

Commit

Permalink
Update to golang 1.17 in test runners
Browse files Browse the repository at this point in the history
Signed-off-by: Paulo Gomes <[email protected]>
  • Loading branch information
Paulo Gomes committed Jan 27, 2022
1 parent cddb9b1 commit 622f3ee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- name: Restore go cache
uses: actions/cache@v1
with:
Expand All @@ -35,6 +39,10 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- name: Restore go cache
uses: actions/cache@v1
with:
Expand All @@ -43,6 +51,9 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Ensure pkg-config is installed
run: |
sudo apt install -y pkg-config
- name: Run tests
run: make test
- name: Verify
Expand Down

0 comments on commit 622f3ee

Please sign in to comment.