...
1name: "CI"
2on:
3 pull_request:
4 branches: [master]
5
6jobs:
7 ci:
8 name: lint
9 runs-on: ubuntu-latest
10 env:
11 GO111MODULE: on
12 DISPLAY: ":99.0"
13 EGL_PLATFORM: "x11"
14 steps:
15 - uses: actions/checkout@v2
16 with:
17 fetch-depth: 1
18 - name: cgo-dependencies
19 run: |
20 sudo apt-get update
21 sudo apt-get install -qq gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev xvfb xdotool
22 - uses: dominikh/staticcheck-action@v1.3.0
23 with:
24 version: "2023.1"
View as plain text