Allow symfony/dotenv
v7
#9
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: 68publishers/environment checks | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
coding-style: | |
name: Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: Php-Cs-Fixer | |
run: vendor/bin/php-cs-fixer fix -v --dry-run | |
- name: PhpStan | |
run: vendor/bin/phpstan analyse --level 9 src | |
tests: | |
name: Unit Tests [PHP ${{ matrix.php-versions }}] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.4', '8.0', '8.1', '8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: Run tests | |
run: vendor/bin/tester -C -s ./tests | |
- name: Install dependencies (lowest) | |
run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable --optimize-autoloader --quiet | |
- name: Run tests | |
run: vendor/bin/tester -C -s ./tests | |
coverage: | |
name: Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
coverage: none | |
extensions: tokenizer | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet | |
- name: Generate the coverage report | |
run: vendor/bin/tester -p phpdbg -C -s --coverage ./coverage.xml --coverage-src ./src ./tests | |
- name: Upload the coverage report | |
env: | |
COVERALLS_REPO_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
run: | | |
wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar | |
php php-coveralls.phar --verbose --config tests/.coveralls.yml |