Skip to content

Commit

Permalink
PES-2398: code coverage typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mzk committed Feb 17, 2025
1 parent a1085e3 commit 0e81033
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/run-phpunit.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
name: PHPUnit tests

on:
push:
branches: [ main ]
pull_request:
push:
branches: [ main ]
pull_request:

jobs:
phpunit:
runs-on: ubuntu-24.04
phpunit:
runs-on: ubuntu-24.04

strategy:
matrix:
php-version: [ '8.1' ]
strategy:
matrix:
php-version: [ '8.1' ]

steps:
- name: Checkout code
uses: actions/checkout@v2
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl
coverage: yes
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl
coverage: yes

- name: php version
run: php -v
- name: php version
run: php -v

- name: Install Composer dependencies
run: composer install
- name: Install Composer dependencies
run: composer install

- name: Run PHPUnit
run: composer run tests-unit
- name: Run PHPUnit
run: composer run tests-unit

- name: Run PHPUnit with code coverage
run: |
Expand Down

0 comments on commit 0e81033

Please sign in to comment.