diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73c71d0..9113b1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,21 +4,18 @@ 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 +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