File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Codestandard
2
+ on :
3
+ merge_group :
4
+ pull_request :
5
+ branches :
6
+ - main
7
+ - ' [0-9]+.[0-9]+'
8
+
9
+ jobs :
10
+ syntax-job :
11
+ runs-on : ubuntu-latest
12
+ container :
13
+ image : domjudge/gitlabci:24.04
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - name : Run the syntax checks
17
+ run : .github/jobs/syntax.sh
18
+
19
+ detect-dump :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - name : " Search for leftover dump( statements"
24
+ run : .github/jobs/detect_dump.sh
25
+
26
+ php-linter :
27
+ runs-on : ubuntu-latest
28
+ container :
29
+ image : pipelinecomponents/php-linter:latest
30
+ steps :
31
+ - uses : actions/checkout@v4
32
+ - name : Detect PHP linting issues
33
+ run : >
34
+ parallel-lint --colors
35
+ lib/lib.*.php
36
+ etc
37
+ judge
38
+ webapp/src
39
+ webapp/tests
40
+ webapp/public
41
+ webapp/config
42
+
43
+ pyright :
44
+ runs-on : ubuntu-latest
45
+ steps :
46
+ - uses : jakebailey/pyright-action@v2
47
+ with :
48
+ version : 1.1.311
You can’t perform that action at this time.
0 commit comments