Move doctrine/orm to require-dev #55
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
PSALM_PHP_VERSION: "8.3" | |
COVERAGE_PHP_VERSION: "8.3" | |
jobs: | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.PSALM_PHP_VERSION }} | |
- name: Install composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run Psalm | |
run: vendor/bin/psalm --show-info=false --find-unused-psalm-suppress --no-progress | |
deps: | |
name: Check dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- name: Install composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run composer-dependency-analyser | |
run: composer dump -a && vendor/bin/composer-dependency-analyser | |
phpunit: | |
name: PHPUnit | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
deps: | |
- "highest" | |
include: | |
- php-version: "8.1" | |
deps: "lowest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: xdebug | |
- name: Install composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.deps }} | |
- name: Run PHPUnit | |
run: vendor/bin/phpunit | |
if: ${{ matrix.php-version != env.COVERAGE_PHP_VERSION }} | |
- name: Run PHPUnit with coverage | |
run: | | |
mkdir -p mkdir -p build/logs | |
vendor/bin/phpunit --coverage-clover build/logs/clover.xml | |
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }} | |
- name: Upload coverage report to Coveralls | |
run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }} |