Skip to content

Commit 8062bc9

Browse files
committed
Revert "f"
This reverts commit 1517314.
1 parent 1517314 commit 8062bc9

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/workflows/codestyle.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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

0 commit comments

Comments
 (0)