Skip to content

fix(release): gitignore composer.lock, bump phpstan to 2.1, drop dupl… #3

fix(release): gitignore composer.lock, bump phpstan to 2.1, drop dupl…

fix(release): gitignore composer.lock, bump phpstan to 2.1, drop dupl… #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2', '8.3', '8.4']
steps:
- uses: actions/checkout@v6
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- uses: actions/setup-node@v6
with:
node-version: '24'
- run: composer install --prefer-dist --no-interaction
- name: Codegen drift check
if: matrix.php == '8.2'
run: |
node scripts/generate.mjs
git diff --exit-code -- specs/openapi.json src/Generated src/Roxy.php src/Version.php tests/Generated \
|| { echo 'codegen drift: commit the regenerated files'; exit 1; }
- name: Lint
if: matrix.php == '8.2'
run: vendor/bin/pint --test
- name: Static analysis
if: matrix.php == '8.2'
run: vendor/bin/phpstan analyse --no-progress --memory-limit=512M
- name: Test
run: vendor/bin/pest --no-coverage