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 : Quality Checks
2
+
3
+ on :
4
+ workflow_dispatch : {}
5
+
6
+ pull_request : {}
7
+ push :
8
+ branches :
9
+ - master
10
+
11
+ concurrency :
12
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
13
+ cancel-in-progress : true
14
+
15
+ jobs :
16
+ tests :
17
+ name : Tests
18
+ runs-on : ubuntu-latest
19
+ timeout-minutes : 10
20
+
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - uses : shivammathur/setup-php@v2
24
+ with :
25
+ php-version : 8.3
26
+ coverage : none
27
+
28
+ - uses : ramsey/composer-install@v2
29
+
30
+ - name : Run PHPUnit
31
+ run : composer run tests
Original file line number Diff line number Diff line change 32
32
"ADR\\ " : " src/"
33
33
}
34
34
},
35
+ "scripts" : {
36
+ "tests" : " vendor/bin/phpunit"
37
+ },
35
38
"bin" : [
36
39
" bin/phpadr"
37
40
]
You can’t perform that action at this time.
0 commit comments