-
Notifications
You must be signed in to change notification settings - Fork 260
89 lines (83 loc) · 2.25 KB
/
codestyle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Codestandard
on:
merge_group:
pull_request:
branches:
- main
- '[0-9]+.[0-9]+'
jobs:
syntax-job:
runs-on: ubuntu-latest
container:
image: domjudge/gitlabci:24.04
steps:
- uses: actions/checkout@v4
- name: Run the syntax checks
run: .github/jobs/syntax.sh
detect-dump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Search for leftover dump( statements"
run: .github/jobs/detect_dump.sh
php-linter:
runs-on: ubuntu-latest
container:
image: pipelinecomponents/php-linter:latest
steps:
- uses: actions/checkout@v4
- name: Detect PHP linting issues
run: >
parallel-lint --colors
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
steps:
- uses: actions/checkout@v4
- name: Download pycodestyle python file
run: >
curl -L -o /tmp/pycodestyle.py 'https://github.com/PyCQA/pycodestyle/raw/refs/tags/2.12.1/pycodestyle.py'
- name: Check codestyle in python files
run: >
python3 /tmp/pycodestyle.py \
--exclude='./example_problems/,./doc/,./gitlab/,./webapp/vendor/' \
--max-line-length 120 \
--show-pep8 --show-source \
.
pyright:
runs-on: ubuntu-latest
steps:
- uses: jakebailey/pyright-action@v2
with:
version: 1.1.311