Skip to content

update workflow

update workflow #11

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: Checkout
uses: actions/checkout@v4
- name: Set up services
run: |
if [ ${{ matrix.directory }} == 'matomo-api' ]; then
docker-compose -f matomo/docker-compose-tests.yaml up -d
fi
- name: Use the reusable workflow
uses: ./.github/workflows/reusable-workflow.yml
with:
directory: ${{ matrix.directory }}