better naming of jobs
This commit is contained in:
parent
e18493897f
commit
9a4351dc70
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['8.1', '8.2', '8.3']
|
php-versions: ['8.1', '8.2', '8.3']
|
||||||
name: Run phpunit tests
|
name: Run PHPunit ${{ matrix.php-version }}
|
||||||
env:
|
env:
|
||||||
extensions: mysql
|
extensions: mysql
|
||||||
key: cache-v1
|
key: cache-v1
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: https://github.com/shivammathur/setup-php@v2
|
uses: https://github.com/shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-version }}
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer
|
tools: composer
|
||||||
env:
|
env:
|
||||||
|
@ -75,4 +75,4 @@ jobs:
|
||||||
- name: Unit Testing
|
- name: Unit Testing
|
||||||
run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && ./vendor/bin/phpunit
|
run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && ./vendor/bin/phpunit
|
||||||
env:
|
env:
|
||||||
PHP_VERSION: ${{ matrix.php-versions }}
|
PHP_VERSION: ${{ matrix.php-version }}
|
||||||
|
|
Loading…
Reference in a new issue