Add attempt at ci

This commit is contained in:
project-repo 2023-04-18 21:57:52 +02:00
commit a2ec7dec62

22
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: ci
on:
push:
branches: [ "feature/continuous-integration", "development" ]
jobs:
linux:
runs-on: archlinux-latest
steps:
- uses: actions/checkout@v3
- 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/
- uses: actions/upload-artifact@v1
if: failure()
with:
name: Cagebreak_Meson_Testlog
path: builddir/meson-logs/testlog.txt