Skip to content

[TASK] Update rector/rector requirement from ^1.0.4 to ^1.0.5 #94

[TASK] Update rector/rector requirement from ^1.0.4 to ^1.0.5

[TASK] Update rector/rector requirement from ^1.0.4 to ^1.0.5 #94

Workflow file for this run

# 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