File tree 7 files changed +2950
-559
lines changed
7 files changed +2950
-559
lines changed Original file line number Diff line number Diff line change 2
2
/.gitattributes export-ignore
3
3
/.github / export-ignore
4
4
/.gitignore export-ignore
5
- /.travis.yml export-ignore
6
5
/docs / export-ignore
7
6
/mkdocs.yml export-ignore
8
7
/phpcs.xml export-ignore
Original file line number Diff line number Diff line change
1
+ name : " Continuous Integration"
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - ' [0-9]+.[0-9]+.x'
8
+ - ' refs/pull/*'
9
+ tags :
10
+
11
+ jobs :
12
+ matrix :
13
+ name : Generate job matrix
14
+ runs-on : ubuntu-latest
15
+ outputs :
16
+ matrix : ${{ steps.matrix.outputs.matrix }}
17
+ steps :
18
+ - name : Gather CI configuration
19
+ id : matrix
20
+ uses : laminas/laminas-ci-matrix-action@v1
21
+
22
+ qa :
23
+ name : QA Checks
24
+ needs : [matrix]
25
+ runs-on : ${{ matrix.operatingSystem }}
26
+ strategy :
27
+ fail-fast : false
28
+ matrix : ${{ fromJSON(needs.matrix.outputs.matrix) }}
29
+ steps :
30
+ - name : ${{ matrix.name }}
31
+ uses : laminas/laminas-continuous-integration-action@v1
32
+ with :
33
+ job : ${{ matrix.job }}
Original file line number Diff line number Diff line change 1
1
/.phpcs-cache
2
2
/.phpunit.result.cache
3
3
/clover.xml
4
- /composer.lock
5
4
/coveralls-upload.json
6
5
/docs /html /
7
6
/laminas-mkdoc-theme.tgz
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments