Merge pull request #23 from PHPCompatibility/feature/add-dependabot-c… #56
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
name: Validate | |
on: | |
# Run on all pushes and pull requests. | |
push: | |
pull_request: | |
# Also run this workflow on day 15 of every month as the repo isn't that active. | |
schedule: | |
- cron: '0 0 15 * *' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: ['5.4', 'latest'] | |
name: PHP ${{ matrix.php }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- name: Install dependencies | |
run: composer update --no-interaction --no-progress | |
- name: Validate Composer installation | |
run: composer validate --no-check-all --strict |