[TASK] Update ergebnis/composer-normalize requirement #198
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
# based on https://github.com/spatie/package-skeleton-laravel/blob/main/.github/workflows/run-tests.yml | |
name: run-tests | |
on: | |
push: | |
paths: | |
- '**.php' | |
- '.github/workflows/run-tests.yml' | |
- 'phpunit.xml.dist' | |
- 'composer.json' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ 8.3, 8.2, 8.1 ] | |
stability: [ prefer-lowest, prefer-stable ] | |
name: P${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
- name: "Setup PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: simplexml | |
coverage: none | |
- name: "Cache dependencies installed with composer" | |
uses: actions/cache@v4 | |
with: | |
key: "php${{ matrix.php }}-${{ matrix.stability }}-composer-${{ hashFiles('**/composer.json') }}" | |
path: ~/.cache/composer | |
restore-keys: "php${{ matrix.php }}-${{ matrix.stability }}-composer-\n" | |
- name: "Setup problem matchers" | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: "Install composer dependencies" | |
run: | | |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
- name: "List Installed Dependencies" | |
run: composer show -D | |
- name: "Execute tests" | |
run: vendor/bin/phpunit --no-coverage |