From 1040f02f1dbf1b1aa851b096f2101edf52cb81ff Mon Sep 17 00:00:00 2001 From: Andreas Wolf Date: Sat, 9 Mar 2024 17:25:20 +0100 Subject: [PATCH] ci: Run end-to-end test in pipeline --- .github/workflows/lint_test_pull_requests.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/lint_test_pull_requests.yaml b/.github/workflows/lint_test_pull_requests.yaml index ba7034b8..3bdb25da 100644 --- a/.github/workflows/lint_test_pull_requests.yaml +++ b/.github/workflows/lint_test_pull_requests.yaml @@ -46,3 +46,20 @@ jobs: container_workdir: /app/${{ matrix.directory }} command: ${{ matrix.composer-command.command }} memory_limit: 512M + + tests: + runs-on: ubuntu-latest + name: End to end tests + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.2' + + - name: Run tests + working-directory: tests + run: ./run-test.sh \ No newline at end of file