Skip to content

Commit

Permalink
fixing github actions steps and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Apr 14, 2026
1 parent 42fe712 commit d2d94b9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/registry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,6 @@ jobs:
composer --version
docker --version
- name: Show working directory
shell: bash
run: |
tree -L 2 "${COMANAGE_REGISTRY_DIR}"
- name: Create local/config/database.php placeholder
shell: bash
run: |
Expand All @@ -113,11 +108,17 @@ jobs:
return [];
EOF
- name: Show working directory
shell: bash
run: |
tree -L 3 "${COMANAGE_REGISTRY_DIR}"
- name: Run PHPUnit (DB_ENGINE=${{ matrix.db_engine }})
shell: bash
working-directory: /srv/comanage-registry/app
env:
DB_ENGINE: ${{ matrix.db_engine }}
run: |
set -euxo pipefail
cd "${COMANAGE_REGISTRY_DIR}"
DB_ENGINE="${DB_ENGINE}" vendor/bin/phpunit --testsuite app

0 comments on commit d2d94b9

Please sign in to comment.