Migrate docker-compose to docker compose #1793
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-integration | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Init environment | |
run: cd ci/docker && ./init.sh | |
- name: Run CI tests | |
run: | | |
cd ci/docker && docker compose exec -T php-fpm.stepup.example.com bash -c ' | |
composer check | |
' | |
env: | |
SYMFONY_ENV: test | |
- name: Output log files on failure | |
if: failure() | |
run: tail -2000 /var/log/syslog |