Skip to content

Commit

Permalink
Merge pull request #8 from internalsystemerror/0.1.x
Browse files Browse the repository at this point in the history
Switch to GHA CI workflow
  • Loading branch information
boesing authored May 10, 2021
2 parents 46dafcf + 1abd17a commit dedeea0
Show file tree
Hide file tree
Showing 8 changed files with 2,651 additions and 219 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/docs/ export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
33 changes: 33 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Continuous Integration"

on:
pull_request:
push:
branches:
- '[0-9]+.[0-9]+.x'
- 'refs/pull/*'
tags:

jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@v1

qa:
name: QA Checks
needs: [matrix]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@v1
with:
job: ${{ matrix.job }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/clover.xml
/composer.lock
/coveralls-upload.json
/phpunit.xml
/vendor/
49 changes: 0 additions & 49 deletions .travis.yml

This file was deleted.

165 changes: 0 additions & 165 deletions CHANGELOG.md

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# mezzio-migration

[![Build Status](https://travis-ci.com/mezzio/mezzio-migration.svg?branch=master)](https://travis-ci.com/mezzio/mezzio-migration)
[![Coverage Status](https://coveralls.io/repos/github/mezzio/mezzio-migration/badge.svg?branch=master)](https://coveralls.io/github/mezzio/mezzio-migration?branch=master)
[![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)

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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"extra": {
},
"require": {
"php": "^7.1",
"php": "^7.3",
"laminas/laminas-zendframework-bridge": "^1.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0"
},
Expand Down
Loading

0 comments on commit dedeea0

Please sign in to comment.