This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
Update Dalichecklist.yaml #139
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: NGINX | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image with php5.6 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "5.6" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php7.1 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "7.1" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php7.2 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "7.2" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php7.4 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "7.4" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php8.0 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "8.0" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php8.1 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "8.1" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true | |
- name: Build the Docker image with php8.2 | |
run: docker-compose build | |
env: | |
PHP_VERSION: "8.2" | |
XDEBUG: true | |
DISPLAY_PHPERROR: true |