Skip to content

fix: preserve executable file permissions during checkout #14

fix: preserve executable file permissions during checkout

fix: preserve executable file permissions during checkout #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
qa:
name: QA Pipeline
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.4']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: hash, zlib, json, mbstring, ctype
coverage: xdebug
- name: Validate composer.json
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: ECS (coding standard)
run: composer ecs:check
- name: PHPStan
run: composer stan
- name: Rector dry-run
run: composer rector:check
- name: PHPUnit
run: composer test:coverage
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/