2020-04-17 08:03:08 +02:00
|
|
|
name: CI
|
2020-04-17 07:10:40 +02:00
|
|
|
|
2021-03-16 08:43:42 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: '**'
|
|
|
|
tags: '**'
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0'
|
2020-04-17 07:10:40 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-03-16 08:43:42 +01:00
|
|
|
php_version: ["7.2", "7.3", "7.4", "8.0"]
|
|
|
|
service: [php-fpm, php-worker, workspace, laravel-horizon, 'nginx redis']
|
2020-04-17 07:10:40 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build the Docker image
|
2020-04-17 08:03:08 +02:00
|
|
|
env:
|
|
|
|
PHP_VERSION: ${{ matrix.php_version }}
|
2020-04-17 07:10:40 +02:00
|
|
|
run: |
|
|
|
|
cp env-example .env
|
|
|
|
docker-compose build ${{ matrix.service }}
|