Merge pull request #16719 from phalcon/5.0.x #100
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: Build Dockerfiles | |
| on: | |
| push: | |
| paths: | |
| - 'docker/**' | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] | |
| name: Build Dockerfile PHP ${{ matrix.php }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Dockerfile | |
| run: docker build docker/${{ matrix.php }} |