Skip to content

add services setup

add services setup #8

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
directory:
- matomo-api
- Library-Notification-Service
steps:
- name: Set up services
run: |
if [ ${{ matrix.directory }} == 'matomo-api' ]; then
docker-compose -f matomo/docker-compose-tests.yml up -d
fi
- name: Use the reusable workflow
uses: ./.github/workflows/reusable-workflow.yml
with:
directory: ${{ matrix.directory }}