Scheduled Test Suite #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scheduled Test Suite | |
on: | |
schedule: | |
- cron: '30 10 * * 1' | |
push: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
name: Scheduled Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup PHP Action | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 8.1 | |
- name: Install latest dependencies | |
run: composer update --prefer-dist --no-progress | |
- name: PHPUnit | |
run: vendor/bin/phpunit | |
env: | |
AKISMET_KEY: ${{ secrets.AKISMET_KEY }} | |
AKISMET_BLOG: ${{ secrets.AKISMET_BLOG }} |