Skip to content

Fix: Don't pre-urlencode Postman collection query keys/values (#1075) #1040

Fix: Don't pre-urlencode Postman collection query keys/values (#1075)

Fix: Don't pre-urlencode Postman collection query keys/values (#1075) #1040

Workflow file for this run

name: Lint
on:
push:
branches: [v4, v5]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- 8.3
- 8.4
name: Lint code (PHP ${{ matrix.php }})
steps:
- name: '🛎 Checkout'
uses: actions/checkout@v6
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, intl, gd
- name: Cache composer dependencies
uses: actions/cache@v5
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Install dependencies
run: composer install
- name: Lint code
env:
COMPOSER_MEMORY_LIMIT: "-1"
run: composer lint
- name: '🧽 Pint'
env:
COMPOSER_MEMORY_LIMIT: "-1"
run: composer style:check