Skip to content

Commit 133f398

Browse files
committed
Try with the new image
1 parent f765a3b commit 133f398

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/codestyle.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,29 @@ jobs:
4040
webapp/public
4141
webapp/config
4242
43+
phpcs_compatibility_new_style:
44+
runs-on: ubuntu-latest
45+
container:
46+
image: domjudge/gitlabci:24.04
47+
strategy:
48+
matrix:
49+
PHPVERSION: ["8.1", "8.2", "8.3", "8.4"]
50+
steps:
51+
- uses: actions/checkout@v4
52+
- name: Detect compatibility with supported PHP version
53+
run: >
54+
./vendor/bin/phpcs -s -p --colors
55+
--standard=PHPCompatibility
56+
--extensions=php
57+
--runtime-set testVersion ${{ matrix.PHPVERSION }}
58+
lib/lib.*.php
59+
etc
60+
judge
61+
webapp/src
62+
webapp/tests
63+
webapp/public
64+
webapp/config
65+
4366
phpcs_compatibility:
4467
runs-on: ubuntu-latest
4568
container:

0 commit comments

Comments
 (0)