README: add libplatsch #25
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
name: tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Inspect environment | |
run: | | |
gcc --version | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
DEBIAN_FRONTEND='noninteractive' sudo apt-get install -qy meson libtool libdrm-dev | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
meson setup build # enable -Dwerror=true later | |
meson configure build | |
meson compile -C build |