fix
This commit is contained in:
parent
75aaef02aa
commit
f6cba0e613
|
@ -1,17 +1,19 @@
|
||||||
on: [push, pull_request]
|
on: [ push, pull_request ]
|
||||||
name: test
|
name: test
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.16.x, 1.17.x]
|
go-version: [ 1.16.x, 1.17.x ]
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [ ubuntu-latest, windows-latest ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
GO111MODULE: on
|
||||||
steps:
|
steps:
|
||||||
- name: Install env dependancies
|
- name: Install env dependancies
|
||||||
run: |
|
run: |
|
||||||
if [ "$RUNNER_OS" == "Linux" ]; then
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
||||||
sudo apt-get install -y xorg-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libopenal-dev libasound2-dev libgl1-mesa-dev
|
sudo apt-get install -y xorg-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libopenal-dev libasound2-dev libgl1-mesa-dev mesa-utils
|
||||||
elif [ "$RUNNER_OS" == "Windows" ]; then
|
elif [ "$RUNNER_OS" == "Windows" ]; then
|
||||||
echo "windows"
|
echo "windows"
|
||||||
else
|
else
|
||||||
|
@ -26,4 +28,4 @@ jobs:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test ./...
|
run: go test -v -race -mod=readonly ./...
|
||||||
|
|
Loading…
Reference in New Issue