chore(deps): update eomm/why-don-t-you-tweet action to v2 #168
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
name: "Integration tests" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "1.4.x" | |
env: | |
COMPOSER_ROOT_VERSION: "1.4.x-dev" | |
jobs: | |
integration-test: | |
name: "Integration test" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
composer-version: | |
- "v2" | |
- "preview" | |
- "snapshot" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
tools: "composer:${{ matrix.composer-version }}" | |
- name: "Install dependencies" | |
working-directory: "e2e/integration" | |
run: "composer install --no-interaction --no-progress --no-suggest" | |
- name: "Test" | |
working-directory: "e2e/integration" | |
run: "vendor/bin/phpstan analyse -l 8 FooTest.php" | |
- name: "Rename directory" | |
working-directory: "e2e" | |
run: "mv integration integration-copy" | |
- name: "Test relative paths - after renaming" | |
working-directory: "e2e/integration-copy" | |
run: "vendor/bin/phpstan analyse -l 8 FooTest.php" | |
ignore-test: | |
name: "Ignore test" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
composer-version: | |
- "v2" | |
- "preview" | |
- "snapshot" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
tools: "composer:${{ matrix.composer-version }}" | |
- name: "Install dependencies" | |
working-directory: "e2e/ignore" | |
run: "composer install --no-interaction --no-progress --no-suggest" | |
- name: "Test" | |
working-directory: "e2e/ignore" | |
run: "vendor/bin/phpstan analyse -l 8 IgnoreTest.php" |