Add KeymapMerge function #108
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file adheres to the YAML5 style. | |
{ | |
"name": "Go", | |
"on": ["push", "pull_request"], | |
"jobs": { | |
"build": { | |
"name": "Build", | |
"runs-on": "ubuntu-latest", | |
"env": { | |
"DISPLAY": ":99.0", | |
}, | |
"steps": [ | |
{ | |
"name": "Set up Go 1.19", | |
"uses": "actions/setup-go@v1", | |
"with": {"go-version": 1.19}, | |
"id": "go", | |
}, | |
{ | |
"name": "Set up dependencies", | |
"run": "sudo -E apt-add-repository -y 'ppa:ubuntu-toolchain-r' && sudo apt-get install libasound2-dev libglew-dev libgles2-mesa-dev libalut-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev", | |
}, | |
{"name": "Xvfb", "run": "Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &"}, | |
{"name": "Check out code into the Go module directory", "uses": "actions/checkout@v1"}, | |
{"name": "Test", "run": "make test"}, | |
{"name": "Linter", "run": "make lint"}, | |
], | |
}, | |
}, | |
} |