27 lines
621 B
YAML
27 lines
621 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: '**'
|
|
tags: '**'
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php_version: ["7.2", "7.3", "7.4", "8.0"]
|
|
service: [php-fpm, php-worker, workspace, laravel-horizon, 'nginx redis mysql mariadb percona minio mongo']
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the Docker image
|
|
env:
|
|
PHP_VERSION: ${{ matrix.php_version }}
|
|
run: |
|
|
cp env-example .env
|
|
sed -i -- '201,272s/=false/=true/g' .env
|
|
docker-compose build ${{ matrix.service }}
|