Skip to content

Migration: GitHub Actions: use packaged docker-compose-v2 from ubuntu-24.04 #1226

Migration: GitHub Actions: use packaged docker-compose-v2 from ubuntu-24.04

Migration: GitHub Actions: use packaged docker-compose-v2 from ubuntu-24.04 #1226

Workflow file for this run

name: Test
on: [pull_request]
env:
COMPOSE_INTERACTIVE_NO_CLI: 1
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sudo apt update
- run: sudo apt install -y docker-compose-plugin
- uses: actions/checkout@v4
- name: Build containers
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml build --parallel
- name: Test
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml run -T app poetry run make test