Skip to content

Commit ab57314

Browse files
committed
fix fixer check in CI
1 parent 5f85a49 commit ab57314

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
check:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
@@ -15,15 +15,17 @@ jobs:
1515
- name: Validate composer.json
1616
run: composer validate --strict --no-check-lock
1717
cs-fixer:
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
name: PHP-CS-Fixer
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323
- name: Fix CS
2424
uses: docker://oskarstark/php-cs-fixer-ga
25+
with:
26+
args: --diff --dry-run
2527
tests:
26-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2729
strategy:
2830
fail-fast: false
2931
matrix:

0 commit comments

Comments
 (0)