Feature TR-5944 adjust the service configuration to LTI libraries breaking changes in dependency injection #100
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 8.0, 8.1, 8.2, 8.3 ] | |
extra-composer-params: [ "" ] | |
include: | |
- php: 8.3 | |
coverage: "true" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP & Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
- name: Install dependencies | |
env: | |
EXTRA_COMPOSER_PARAMS: ${{ matrix.extra-composer-params }} | |
run: composer update --no-interaction --no-suggest ${EXTRA_COMPOSER_PARAMS} | |
- name: PHPUnit | |
env: | |
COVERAGE: ${{ matrix.coverage }} | |
run: | | |
[ $COVERAGE = "true" ] \ | |
&& mkdir -p build/logs && ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml \ | |
|| ./vendor/bin/phpunit | |
- name: Psalm | |
run: | | |
./vendor/bin/psalm --shepherd | |
- name: Coveralls | |
if: ${{ matrix.coverage == 'true' }} | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./vendor/bin/php-coveralls -v |