Skip to content

Commit 9b892b4

Browse files
authored
Merge pull request #7 from internalsystemerror/2.7.x
Switch to GHA CI workflow
2 parents ff0b98d + 36dd12f commit 9b892b4

8 files changed

+3372
-720
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/.coveralls.yml export-ignore
22
/.docheader export-ignore
33
/.gitattributes export-ignore
4+
/.github/ export-ignore
45
/.gitignore export-ignore
5-
/.travis.yml export-ignore
66
/docs/ export-ignore
77
/phpcs.xml export-ignore
88
/phpunit.xml.dist export-ignore
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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 }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/.phpunit.result.cache
22
/clover.xml
3-
/composer.lock
43
/coveralls-upload.json
54
/phpunit.xml
65
/vendor/

.travis.yml

-62
This file was deleted.

0 commit comments

Comments
 (0)