Ports the standalone due-date cron script into a proper Nextcloud 34 app with a personal-settings UI, per-user workflow configuration (source/target stack, assigned-user and label filters, email notification), a TimedJob background runner, and Gitea CI pipelines. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
25 lines
475 B
YAML
25 lines
475 B
YAML
name: PHPUnit
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
unit-tests:
|
|
runs-on: gitea-runner-server03
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.3'
|
|
extensions: sqlite, pdo_sqlite
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: composer install --no-progress --prefer-dist
|
|
|
|
- name: Run unit tests
|
|
run: composer run test:unit
|