mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-24 06:24:19 +02:00
15 lines
381 B
YAML
15 lines
381 B
YAML
on:
|
|
push:
|
|
branches: [ "feature/continuous-integration", "development" ]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: archlinux:latest
|
|
steps:
|
|
- run: bash scripts/install-development-environment
|
|
- run: meson setup build -Dxwayland=true -Dman-pages=true --buildtype=release
|
|
- run: ninja -C build
|
|
- run: meson test -C build
|
|
|