Merge pull request #2564 from laradock/actions-ci

use Actions run CI
This commit is contained in:
Shao Yu-Lung (Allen) 2020-04-17 14:56:16 +08:00 committed by GitHub
commit aa325b5218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/main-ci.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["7.1", "7.2", "7.3", "7.4"]
service: [php-fpm, php-worker, workspace, laravel-horizon]
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 }}