blackbirdchess-docker-dev/.github/workflows/main-ci.yml
Pavel Savushkin f3816a99ab
ci(PHP 8.0): add CI processes for PHP 8.0
CI environment for the PHP 8.0 should be implemented.

Closes #2863
2021-03-12 03:56:39 +02:00

20 lines
458 B
YAML

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["7.1", "7.2", "7.3", "7.4", "8.0"]
service: [php-fpm, php-worker, workspace, laravel-horizon]
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
env:
PHP_VERSION: ${{ matrix.php_version }}
run: |
cp env-example .env
docker-compose build ${{ matrix.service }}