From 4cacd04adbd54acf6ba6a5fd049029055de8e3dc Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 13 Oct 2021 14:57:03 +0100 Subject: [PATCH] install env deps for actions --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d7c549f..14218cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,8 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: + - name: Install env dependancies + run: sudo apt-get install -y xorg-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libopenal-dev libasound2-dev libgl1-mesa-dev - name: Install Go uses: actions/setup-go@v2 with: @@ -15,4 +17,4 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Test - run: go test ./... \ No newline at end of file + run: go test ./...