File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Code Analysis
2
+
3
+ on :
4
+ pull_request : null
5
+
6
+ jobs :
7
+ code_analysis :
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ actions :
12
+ -
13
+ name : ' Validate'
14
+ # this is very slow, so it has to be in own workflow
15
+ run : composer validate --strict
16
+
17
+ name : ${{ matrix.actions.name }}
18
+ runs-on : ubuntu-latest
19
+
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+
23
+ # see https://github.com/shivammathur/setup-php
24
+ -
25
+ uses : shivammathur/setup-php@v2
26
+ with :
27
+ php-version : 7.3
28
+ coverage : none
29
+
30
+ - uses : " ramsey/composer-install@v1"
31
+
32
+ - run : ${{ matrix.actions.run }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " rector/php-parser-nodes-docs" ,
3
+ "license" : " MIT" ,
4
+ "description" : " Generate visual docs for php-parser nodes - the first step to master AST" ,
3
5
"require" : {
4
6
"php" : " ^8.0" ,
5
7
"symfony/console" : " ^5.2" ,
You can’t perform that action at this time.
0 commit comments