Skip to content
Draft
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
50 changes: 25 additions & 25 deletions .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,31 +40,31 @@ jobs:
webapp/public
webapp/config

phpcs_compatibility:
runs-on: ubuntu-latest
container:
image: pipelinecomponents/php-codesniffer:latest
strategy:
matrix:
PHPVERSION: ["8.1", "8.2", "8.3", "8.4"]
steps:
- run: apk add git
- uses: actions/checkout@v4
- name: Various fixes to this image
run: .github/jobs/fix_pipelinecomponents_image.sh
- name: Detect compatibility with supported PHP version
run: >
phpcs -s -p --colors
--standard=PHPCompatibility
--extensions=php
--runtime-set testVersion ${{ matrix.PHPVERSION }}
lib/lib.*.php
etc
judge
webapp/src
webapp/tests
webapp/public
webapp/config
# phpcs_compatibility:
# runs-on: ubuntu-latest
# container:
# image: pipelinecomponents/php-codesniffer:latest
# strategy:
# matrix:
# PHPVERSION: ["8.1", "8.2", "8.3", "8.4"]
# steps:
# - run: apk add git
# - uses: actions/checkout@v4
# - name: Various fixes to this image
# run: .github/jobs/fix_pipelinecomponents_image.sh
# - name: Detect compatibility with supported PHP version
# run: >
# phpcs -s -p --colors
# --standard=PHPCompatibility
# --extensions=php
# --runtime-set testVersion ${{ matrix.PHPVERSION }}
# lib/lib.*.php
# etc
# judge
# webapp/src
# webapp/tests
# webapp/public
# webapp/config

pycodestyle:
runs-on: ubuntu-latest
Expand Down
Loading