Update github-actions #234
This file contains hidden or 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" | |
| permissions: | |
| contents: read | |
| jobs: | |
| integration-test: | |
| name: "Integration test" | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| matrix: | |
| php-version: | |
| - "7.4" | |
| - "8.0" | |
| - "8.1" | |
| - "8.2" | |
| - "8.3" | |
| - "8.4" | |
| - "8.5" | |
| composer-version: | |
| - "v2" | |
| - "preview" | |
| - "snapshot" | |
| - "2.1.0" | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4 | |
| with: | |
| egress-policy: audit | |
| - name: "Checkout" | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: "Install PHP" | |
| uses: "shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240" # 2.37.2 | |
| 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: | |
| fail-fast: false | |
| matrix: | |
| php-version: | |
| - "7.4" | |
| - "8.0" | |
| - "8.1" | |
| - "8.2" | |
| - "8.3" | |
| - "8.4" | |
| - "8.5" | |
| composer-version: | |
| - "v2" | |
| - "preview" | |
| - "snapshot" | |
| - "2.1.0" | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4 | |
| with: | |
| egress-policy: audit | |
| - name: "Checkout" | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: "Install PHP" | |
| uses: "shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240" # 2.37.2 | |
| 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" |