laradock/.github/workflows/main-ci.yml

28 lines
689 B
YAML
Raw Normal View History

2020-04-17 14:03:08 +08:00
name: CI
2020-04-17 13:10:40 +08:00
2021-03-16 15:43:42 +08:00
on:
push:
branches: '**'
tags: '**'
pull_request:
schedule:
- cron: '0 0 * * 0'
2020-04-17 13:10:40 +08:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2021-03-16 15:43:42 +08:00
php_version: ["7.2", "7.3", "7.4", "8.0"]
2021-03-16 16:18:21 +08:00
service: [php-fpm, php-worker, workspace, laravel-horizon, 'nginx redis mysql mariadb percona minio mongo']
2020-04-17 13:10:40 +08:00
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
2020-04-17 14:03:08 +08:00
env:
PHP_VERSION: ${{ matrix.php_version }}
2020-04-17 13:10:40 +08:00
run: |
cp env-example .env
2021-03-16 16:18:21 +08:00
sed -i -- '201,272s/=false/=true/g' .env
sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
2020-04-17 13:10:40 +08:00
docker-compose build ${{ matrix.service }}