chore(deps): bump the openemr-images group across 19 directories with… #177
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: Composer Checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - rel-* | |
| pull_request: | |
| branches: | |
| - master | |
| - rel-* | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' && github.event.number || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| composer: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| php-version: ['8.2'] | |
| steps: | |
| - name: "Checkout Code" | |
| uses: actions/checkout@v7 | |
| - name: Setup PHP and Composer | |
| uses: ./.github/actions/setup-php-composer | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| - name: "Validate Composer" | |
| run: composer validate --strict | |
| - name: "Check Composer Normalized" | |
| run: composer normalize --dry-run |