Skip to content

Add DotenvConfigurator, for .env.etc files #572

Add DotenvConfigurator, for .env.etc files

Add DotenvConfigurator, for .env.etc files #572

Workflow file for this run

name: "CI"
on:
pull_request:
push:
branches:
- '1.x'
- '2.x'
env:
SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit"
jobs:
tests:
name: "PHP ${{ matrix.php }} ${{ matrix.mode }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php: '8.0'
composer: 2.2.x
- php: '8.1'
mode: low-deps
steps:
- name: "Checkout code"
uses: actions/[email protected]
- name: "Install PHP with extensions"
uses: shivammathur/[email protected]
with:
coverage: "none"
php-version: ${{ matrix.php }}
tools: composer:${{ matrix.composer }}
- name: "Validate composer.json"
run: "composer validate --strict --no-check-lock"
- name: "Install dependencies"
run: |
if [[ "${{ matrix.mode }}" = low-deps ]]; then
composer u --prefer-lowest --prefer-stable --ansi
else
composer u --ansi
fi
- name: "Install PHPUnit"
run: vendor/bin/simple-phpunit install
- run: vendor/bin/simple-phpunit
- if: matrix.php == '8.0'
name: "Lint PHP files"
run: find src/ -name '*.php' | xargs -n1 php -l