Skip to content

Commit

Permalink
ci: Run end-to-end test in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswolf committed Mar 9, 2024
1 parent b7024c8 commit 1040f02
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint_test_pull_requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1040f02

Please sign in to comment.