2022-07-15 02:23:59 +02: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-02 22:46:09 +01:00
|
|
|
preserve_vendor_tests: true
|
2022-07-15 02:23:59 +02:00
|
|
|
extra_jobs: |
|
2022-08-18 01:01:28 +02:00
|
|
|
- php: 8.1
|
2022-07-15 02:23:59 +02:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
|
|
|
composer_args: --prefer-lowest
|
2023-03-02 22:46:09 +01:00
|
|
|
phpunit_suite: all
|
2022-08-18 01:01:28 +02:00
|
|
|
- php: 8.1
|
2022-07-15 02:23:59 +02:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
2023-03-02 22:46:09 +01:00
|
|
|
phpunit_suite: all
|
|
|
|
- php: 8.2
|
2022-07-15 02:23:59 +02:00
|
|
|
db: pgsql
|
|
|
|
phpunit: true
|
2023-03-02 22:46:09 +01:00
|
|
|
phpunit_suite: all
|
|
|
|
|