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 cddb9b1 commit 10b9850Copy full SHA for 10b9850
.github/workflows/build.yaml
@@ -15,6 +15,10 @@ jobs:
15
steps:
16
- name: checkout
17
uses: actions/checkout@v2
18
+ - name: Setup Go
19
+ uses: actions/setup-go@v2
20
+ with:
21
+ go-version: 1.17.x
22
- name: Restore go cache
23
uses: actions/cache@v1
24
with:
@@ -35,6 +39,10 @@ jobs:
35
39
36
40
37
41
42
43
44
45
38
46
47
48
@@ -43,6 +51,9 @@ jobs:
51
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
52
restore-keys: |
53
${{ runner.os }}-go-
54
+ - name: Ensure pkg-config is installed
55
+ run: |
56
+ apt install -y pkg-config
57
- name: Run tests
58
run: make test
59
- name: Verify
0 commit comments