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

20 lines
416 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:
php_version: [72, 73]
service: [php-fpm, php-worker]
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 }}