Skip to content

Commit f61417c

Browse files
committed
.github/workflows: bug fix: need to install dependencies
1 parent 6df2ece commit f61417c

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
with:
2323
go-version: ${{ matrix.go }}
2424

25+
- name: Install dependencies
26+
if: runner.os == 'Linux'
27+
run: |
28+
sudo apt-get update
29+
sudo apt-get install libasound2-dev libgl1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
30+
2531
- name: Test
2632
run: |
2733
go test -v ./...

0 commit comments

Comments
 (0)