cagebreak/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: Line: 10 Column 5: Failed to match job-factory: Line: 11 Column 7: Failed to match non-empty-string: Line: 11 Column 7: Expected a scalar got mapping Line: 11 Column 7: Failed to match sequence-of-non-empty-string: Line: 11 Column 7: Expected a sequence got mapping Line: 11 Column 7: Failed to match runs-on-mapping: Line: 11 Column 7: Unknown Property using Line: 12 Column 7: Unknown Property image Line: 10 Column 5: Failed to match workflow-job: Line: 11 Column 7: Failed to match non-empty-string: Line: 11 Column 7: Expected a scalar got mapping Line: 11 Column 7: Failed to match sequence-of-non-empty-string: Line: 11 Column 7: Expected a sequence got mapping Line: 11 Column 7: Failed to match runs-on-mapping: Line: 11 Column 7: Unknown Property using Line: 12 Column 7: Unknown Property image Line: 13 Column 5: Unknown Property steps Forgejo Actions YAML Schema validation error
2023-04-18 22:19:53 +02:00

24 lines
563 B
YAML

name: ci
on:
push:
branches: [ "feature/continuous-integration", "development" ]
jobs:
linux:
runs-on:
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