-
Notifications
You must be signed in to change notification settings - Fork 7
Unpushed commits (local main ahead of origin/main) #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b8b2294
6960b8a
7a02de0
d3f30a9
b00f0da
1fa17f7
5411b29
4dc7dab
4f57a0e
5ca3a1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,6 +15,6 @@ jobs: | |||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - name: 'Checkout Repository' | ||||||
| uses: actions/checkout@v6 | ||||||
| uses: actions/checkout@v6.0.2 | ||||||
|
||||||
| uses: actions/checkout@v6.0.2 | |
| uses: actions/checkout@v4 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,20 +2,21 @@ name: Fix PHP code style issues | |||||
|
|
||||||
| on: [push] | ||||||
|
|
||||||
| permissions: | ||||||
| contents: write | ||||||
|
|
||||||
| jobs: | ||||||
| php-code-styling: | ||||||
| runs-on: ubuntu-latest | ||||||
|
|
||||||
| steps: | ||||||
| - name: Checkout code | ||||||
| uses: actions/checkout@v4 | ||||||
| with: | ||||||
| ref: ${{ github.head_ref }} | ||||||
| uses: actions/checkout@v6.0.2 | ||||||
|
||||||
| uses: actions/checkout@v6.0.2 | |
| uses: actions/checkout@v4 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,22 +1,42 @@ | ||||||
| name: PHPStan | ||||||
|
|
||||||
| on: [push] | ||||||
| on: | ||||||
| push: | ||||||
| paths: | ||||||
| - '**/*.php' | ||||||
| - 'phpstan.neon.dist' | ||||||
| - 'phpstan-baseline.neon' | ||||||
| - 'composer.json' | ||||||
| - 'composer.lock' | ||||||
| pull_request: | ||||||
| paths: | ||||||
| - '**/*.php' | ||||||
| - 'phpstan.neon.dist' | ||||||
| - 'phpstan-baseline.neon' | ||||||
| - 'composer.json' | ||||||
| - 'composer.lock' | ||||||
| workflow_dispatch: | ||||||
|
|
||||||
| concurrency: | ||||||
| group: ${{ github.workflow }}-${{ github.ref }} | ||||||
| cancel-in-progress: true | ||||||
|
|
||||||
| jobs: | ||||||
| phpstan: | ||||||
| name: phpstan | ||||||
| runs-on: ubuntu-latest | ||||||
| timeout-minutes: 5 | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/checkout@v6.0.2 | ||||||
|
||||||
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/checkout@v4 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,12 +10,13 @@ jobs: | |||||
| release: | ||||||
| name: Release | ||||||
| runs-on: ubuntu-latest | ||||||
| timeout-minutes: 10 | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/checkout@v6.0.2 | ||||||
|
||||||
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/checkout@v4 |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The guidance to run
composer run formatis misleading here: this repo’scomposer.jsondefines aformatscript that runsphp-cs-fixer, not Pint. Either update the docs to point only to./vendor/bin/pint(or add a dedicated Pint script), or change theformatscript to run Pint so the instructions match actual behavior.