Skip to content

Commit

Permalink
Minor renaming of jobs in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
meritoo committed Oct 26, 2024
1 parent 8059332 commit 62188ae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/verify-stability.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
contents: read

jobs:
validate:
Validate:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -59,16 +59,16 @@ jobs:
php_version: ${{ matrix.php-versions }}
php_extensions: intl
dev: no
phpstan:
PHPStan:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2' ]
env:
extensions: dom, fileinfo, intl, json, pcre, simplexml
key: cache-v1 # can be any string, change to clear the extension cache.
needs: [ validate ]
if: needs.validate.result == 'success'
needs: [ Validate ]
if: needs.Validate.result == 'success'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -91,16 +91,16 @@ jobs:
php_extensions: intl
- name: Analyse code with PHPStan
run: vendor/bin/phpstan analyse --memory-limit 256M
phpunit:
PHPUnit:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2' ]
env:
extensions: dom, fileinfo, intl, json, pcre, simplexml
key: cache-v1 # can be any string, change to clear the extension cache.
needs: [ phpstan ]
if: needs.phpstan.result == 'success'
needs: [ PHPStan ]
if: needs.PHPStan.result == 'success'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 62188ae

Please sign in to comment.