Merge pull request #16482 from phalcon/5.0.x #86
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: 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' ] | |
name: Build Dockerfile PHP ${{ matrix.php }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Dockerfile | |
run: docker build docker/${{ matrix.php }} |