Update action

This commit is contained in:
Milan Nikolic 2021-11-11 17:30:41 +01:00
parent dda13779be
commit 92fadd0e96
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75

View file

@ -4,7 +4,7 @@ jobs:
test: test:
strategy: strategy:
matrix: matrix:
go-version: [1.16.x, 1.17.x] go-version: [1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
@ -14,5 +14,10 @@ jobs:
go-version: ${{ matrix.go-version }} go-version: ${{ matrix.go-version }}
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install package
run: |
sudo apt-get update -y; sudo apt-get -y install libxi-dev libxinerama-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev
if: runner.os == 'Linux'
- name: Build - name: Build
run: make run: go build ./...
working-directory: raylib