Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 0 additions & 59 deletions .github/workflows/ci.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/on-pr-merged.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: After-Merge Chores
on:
pull_request:
types:
- closed
# branches:
# - FRAMEWORK_6_0
workflow_dispatch:

jobs:
PostMerge:
if: github.event.pull_request.merged == true
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: bcmath, ctype, curl, dom, gd, gettext, iconv, imagick, json, ldap, mbstring, mysql, opcache, openssl, pcntl, pdo, posix, redis, soap, sockets, sqlite, tokenizer, xmlwriter, xdebug
ini-values: post_max_size=512M, max_execution_time=360
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}, composer:v2
- name: Setup Github Token as composer credential
run: composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies and local tools
run: |
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config minimum-stability dev
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config prefer-stable true
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install --no-interaction --no-progress

44 changes: 44 additions & 0 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Pull Request Chores
on:
pull_request:
branches:
- FRAMEWORK_6_0
workflow_dispatch:

jobs:
CI:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: bcmath, ctype, curl, dom, gd, gettext, iconv, imagick, json, ldap, mbstring, mysql, opcache, openssl, pcntl, pdo, posix, redis, soap, sockets, sqlite, tokenizer, xmlwriter, xdebug
ini-values: post_max_size=512M, max_execution_time=360
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}, composer:v2
- name: Setup Github Token as composer credential
run: composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies and local tools
run: |
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config minimum-stability dev
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer config prefer-stable true
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install --no-interaction --no-progress

- name: Run PHPUnit
run: vendor/bin/phpunit --testdox

- name: Run php-cs-fixer
run: vendor/bin/php-cs-fixer check -vvv

- name: Run phpstan (mandatory level)
## Deviation: We analyze the test dir and other non-essentials in the allowed-to-fail test. The unit test dir has some nasty stuff.
run: vendor/bin/phpstan --no-progress analyze src/

- name: Run phpstan (level 9, allowed to fail)
run: vendor/bin/phpstan --no-progress --level=9
continue-on-error: true

69 changes: 0 additions & 69 deletions .github/workflows/phpdoc.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/workflows/release.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/update-composer-json.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/update-satis.yml

This file was deleted.

Loading