File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Static Analysis
2
+
3
+ on :
4
+ push :
5
+ branches : master
6
+ pull_request :
7
+ branches : master
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ php :
12
+ name : PHPCS and PHPStan
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - name : Check out the source code
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Run PHPCS and PHPStan tests
21
+ uses : polylang/actions/static-analysis@main
Original file line number Diff line number Diff line change
1
+ name : Spell Check
2
+
3
+ on :
4
+ push :
5
+ branches : master
6
+ pull_request :
7
+ branches : master
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ testing :
12
+ name : Spell Check with Typos
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - name : Checkout Actions Repository
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Check spelling
21
+ uses : crate-ci/typos@master
You can’t perform that action at this time.
0 commit comments