From 9a4351dc704c37af6089d4454986a3ef087631dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Sat, 21 Sep 2024 13:37:49 +0200 Subject: [PATCH] better naming of jobs --- .forgejo/workflows/phpunit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/phpunit.yml b/.forgejo/workflows/phpunit.yml index cf444ea..6d9f4a1 100644 --- a/.forgejo/workflows/phpunit.yml +++ b/.forgejo/workflows/phpunit.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: php-versions: ['8.1', '8.2', '8.3'] - name: Run phpunit tests + name: Run PHPunit ${{ matrix.php-version }} env: extensions: mysql key: cache-v1 @@ -48,7 +48,7 @@ jobs: - name: Setup PHP uses: https://github.com/shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php-versions }} + php-version: ${{ matrix.php-version }} coverage: none tools: composer env: @@ -75,4 +75,4 @@ jobs: - name: Unit Testing run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && ./vendor/bin/phpunit env: - PHP_VERSION: ${{ matrix.php-versions }} + PHP_VERSION: ${{ matrix.php-version }}