2022-07-15 12:23:59 +12:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
name: CI
|
|
|
|
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
|
|
|
with:
|
|
|
|
# set phpunit to false to prevent automatic generation of mysql phpunit jobs
|
|
|
|
phpunit: false
|
2023-03-03 10:46:09 +13:00
|
|
|
preserve_vendor_tests: true
|
2022-07-15 12:23:59 +12:00
|
|
|
extra_jobs: |
|
2022-08-18 11:01:28 +12:00
|
|
|
- php: 8.1
|
2022-07-15 12:23:59 +12:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
|
|
|
composer_args: --prefer-lowest
|
2023-03-03 10:46:09 +13:00
|
|
|
phpunit_suite: all
|
2022-08-18 11:01:28 +12:00
|
|
|
- php: 8.1
|
2022-07-15 12:23:59 +12:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
2023-03-03 10:46:09 +13:00
|
|
|
phpunit_suite: all
|
|
|
|
- php: 8.2
|
2022-07-15 12:23:59 +12:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
2023-03-03 10:46:09 +13:00
|
|
|
phpunit_suite: all
|
|
|
|
|