Skip to content

Commit dedeea0

Browse files
authored
Merge pull request #8 from internalsystemerror/0.1.x
Switch to GHA CI workflow
2 parents 46dafcf + 1abd17a commit dedeea0

8 files changed

+2651
-219
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/.coveralls.yml export-ignore
22
/.gitattributes export-ignore
3+
/.github/ export-ignore
34
/.gitignore export-ignore
4-
/.travis.yml export-ignore
55
/docs/ export-ignore
66
/phpcs.xml export-ignore
77
/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,5 +1,4 @@
11
/clover.xml
2-
/composer.lock
32
/coveralls-upload.json
43
/phpunit.xml
54
/vendor/

.travis.yml

-49
This file was deleted.

CHANGELOG.md

-165
This file was deleted.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# mezzio-migration
22

3-
[![Build Status](https://travis-ci.com/mezzio/mezzio-migration.svg?branch=master)](https://travis-ci.com/mezzio/mezzio-migration)
4-
[![Coverage Status](https://coveralls.io/repos/github/mezzio/mezzio-migration/badge.svg?branch=master)](https://coveralls.io/github/mezzio/mezzio-migration?branch=master)
3+
[![Build Status](https://github.com/mezzio/mezzio-migration/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/mezzio/mezzio-migration/actions/workflows/continuous-integration.yml)
54

65
This library provides a tool for migrating from Mezzio v2 to v3.
76

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"extra": {
2323
},
2424
"require": {
25-
"php": "^7.1",
25+
"php": "^7.3",
2626
"laminas/laminas-zendframework-bridge": "^1.0",
2727
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0"
2828
},

0 commit comments

Comments
 (0)