major(deps): update dependency phpunit/phpunit to v12 (#56) #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: general | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Setup php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.3" | |
- name: Install generator | |
run: npm install @openapitools/openapi-generator-cli -g | |
- name: Run generate | |
run: bash hack/generate-client.sh | |
- name: Run install | |
run: composer install | |
- name: Run test | |
run: vendor/bin/phpunit | |
... |