2022-07-15 02:23:59 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
# Every Thursday at 12:20pm UTC
|
|
|
|
schedule:
|
|
|
|
- cron: '20 12 * * 4'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
name: CI
|
|
|
|
# Only run cron on the silverstripe account
|
2022-08-02 07:55:18 +02:00
|
|
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
2022-07-15 02:23:59 +02:00
|
|
|
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
|
|
|
with:
|
|
|
|
# set phpunit to false to prevent automatic generation of mysql phpunit jobs
|
|
|
|
phpunit: false
|
|
|
|
extra_jobs: |
|
|
|
|
- php: 7.4
|
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
|
|
|
composer_args: --prefer-lowest
|
|
|
|
- php: 8.0
|
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
|
|
|
- php: 8.1
|
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|