workflow: fix and enable snapshots #189
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: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
- 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: Build | |
run: | | |
meson setup build | |
meson compile -C build |