Skip to content

Merge with 8.3

Merge with 8.3 #38

Workflow file for this run

name: Test
on:
pull_request:
branches: ["main", "7.4"]
workflow_dispatch:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build
run: docker compose -f docker-compose.test.yml build
- name: Run test
run: docker compose -f docker-compose.test.yml up --abort-on-container-exit