Skip to content

Commit

Permalink
Update test fixture before running the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 10, 2023
1 parent d9eb3c9 commit 337d169
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -66,6 +66,12 @@ jobs:
- name: "Checkout"
uses: "actions/checkout@v3"

- name: Install Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11

- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@v2"
with:
Expand All @@ -75,6 +81,9 @@ jobs:
- name: "Install dependencies with Composer"
run: "./tools/composer update --no-ansi --no-interaction --no-progress"

- name: Update test fixture
run: ant update-fixture

- name: "Run tests with PHPUnit"
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"

Expand Down

0 comments on commit 337d169

Please sign in to comment.