Skip to content
Merged
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
9 changes: 0 additions & 9 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
pull_request:
branches:
- main
schedule:
- cron: "15 5 * * 1,3,5"

jobs:
install-dependencies:
Expand Down Expand Up @@ -42,7 +40,6 @@ jobs:
restore-keys: php-composer-lock-${{ runner.os }}-${{ github.run_id }}

composer-validation:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: Composer Validation
needs: install-dependencies
Expand Down Expand Up @@ -81,7 +78,6 @@ jobs:
run: composer dump-autoload --optimize --strict-psr

dependency-review:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: Dependency Review
needs: install-dependencies
Expand Down Expand Up @@ -111,7 +107,6 @@ jobs:
license-check: true

code-analysis-php-stan:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: PHPStan
needs:
Expand Down Expand Up @@ -148,7 +143,6 @@ jobs:
run: php -d memory_limit=-1 vendor/bin/phpstan analyse --level max tests

code-analysis-php-codesniffer:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: PHPCodeSniffer
needs:
Expand Down Expand Up @@ -185,7 +179,6 @@ jobs:
run: php -d memory_limit=-1 vendor/bin/phpcs --standard=PSR12 tests

code-analysis-phplint:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: PHPLint
needs:
Expand Down Expand Up @@ -272,14 +265,12 @@ jobs:
run: php vendor/bin/phpunit --coverage-clover tests/build/logs/clover.xml --coverage-html tests/build/coverage

- name: Upload coverage reports to Codecov
if: github.event_name == 'pull_request'
uses: codecov/codecov-action@v5
with:
files: tests/build/logs/clover.xml
token: ${{ secrets.CODECOV_TOKEN_LION_COMMAND }}

tests-infection:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
name: Infection
needs:
Expand Down