blackbirdchess-docker-dev/.github/workflows/main-ci.yml

19 lines
446 B
YAML
Raw Normal View History

2020-04-17 07:10:40 +02:00
name: Docker Image CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2020-04-17 07:12:57 +02:00
php_version: ["7.2", "7.3"]
2020-04-17 07:10:40 +02:00
service: [php-fpm, php-worker]
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
cp env-example .env
2020-04-17 07:14:06 +02:00
sed -i -- "s/PHP_VERSION=.*/PHP_VERSION=${{ matrix.php_version }}/g" .env
2020-04-17 07:10:40 +02:00
docker-compose build ${{ matrix.service }}