-
Notifications
You must be signed in to change notification settings - Fork 260
63 lines (58 loc) · 1.52 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
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
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