cagebreak/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: Line: 7 Column 1: Unknown Property runs Line: 10 Column 1: Unknown Property steps Forgejo Actions YAML Schema validation error
2023-04-18 22:23:12 +02:00

21 lines
488 B
YAML

name: ci
on:
push:
branches: [ "feature/continuous-integration", "development" ]
runs:
using: 'docker'
image: 'Dockerfile'
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