Skip to content

Try to install deps without bind-mount (#8) #42

Try to install deps without bind-mount (#8)

Try to install deps without bind-mount (#8) #42

Workflow file for this run

name: 'CI: tests, static analysis'
on:
pull_request:
push:
branches: ['master']
env:
APP_ENV: dev
APP_SECRET: infection_ci_secret
DATABASE_ROOT_PASSWORD: root
DATABASE_PASSWORD: infection_ci_pass
DATABASE_NAME: infection_ci_playground
DATABASE_USER: infection_ci
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker images
uses: docker/bake-action@v4
with:
pull: true
load: true
files: |
docker-compose.yml
docker-compose.ci.yml
set: |
*.cache-from=type=gha,scope=${{github.ref}}
*.cache-from=type=gha,scope=refs/heads/master
*.cache-to=type=gha,scope=${{github.ref}},mode=max
- name: Start services
run: docker compose -f docker-compose.yml -f docker-compose.ci.yml up -d
- name: Install dependencies
run: docker compose exec -T php composer install
- name: Install application and DB
run: docker compose exec -T php make app-reinstall
- name: make analyze
run: docker compose exec -T php make analyze