fix(composer-update): reach 4-segment hotfixes for <= advisory bounds… #6
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
| name: "Test: composer-update" | |
| on: | |
| pull_request: | |
| paths: | |
| - 'composer-update/**' | |
| - '.github/workflows/composer-update-tests.yml' | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'composer-update/**' | |
| - '.github/workflows/composer-update-tests.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Run composer-update tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # The PHP helper tests run the real helpers and bootstrap composer/semver | |
| # into a temp vendor dir. jq, git and bash are preinstalled on the runner. | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| tools: composer | |
| - name: Run tests | |
| run: chmod +x composer-update/tests/run.sh && composer-update/tests/run.sh |