Skip to content

phpunit

phpunit #596

Workflow file for this run

name: phpunit
on:
push:
branches:
- main
schedule:
- cron: '9 */11 * * *'
jobs:
run-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: composer install
shell: bash
run: |
php -v
composer install -q --no-ansi --no-interaction --no-progress
- name: phpunit
shell: bash
run: |
vendor/bin/phpunit
- name: log
shell: bash
run: |
date -I > last-tested.txt
- name: push updated lists
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: update tested date.