client/window: fix fullscreen framerate #230
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
name: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: debian:sid | |
steps: | |
- name: Install deps | |
run: | | |
apt-get update | |
apt-get install -y git build-essential meson cmake lua5.4 xorg-dev libgl1-mesa-dev libxkbcommon-dev | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: | | |
meson setup build | |
meson compile -C build |