Skip to content

PHP tests, including skipped tests #54

PHP tests, including skipped tests

PHP tests, including skipped tests #54

name: PHP tests, including skipped tests
on:
schedule:
- cron: '45 23 * * 4'
workflow_dispatch:
permissions:
contents: read
jobs:
tester-include-skipped:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "8.3"
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2
with:
coverage: pcov
php-version: ${{ matrix.php-version }}
- name: Create symlink in /srv/www
run: |
sudo mkdir --parents /srv/www
sudo ln --symbolic $GITHUB_WORKSPACE /srv/www
- run: make --directory=app tester-include-skipped
- name: Failed test output, if any
if: failure()
run: for i in $(find ./app/tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
- name: Upload test code coverage
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1
if: success()
with:
name: Test code coverage (PHP ${{ matrix.php-version }})
path: 'app/temp/coverage.html'
retention-days: 5