Skip to content

Commit

Permalink
Merge pull request #26 from Slamdunk/laminas_ci_workflow
Browse files Browse the repository at this point in the history
Adopt Laminas CI Workflow
  • Loading branch information
weierophinney authored Apr 8, 2021
2 parents 6488e14 + 326fd2c commit b91fd8a
Show file tree
Hide file tree
Showing 9 changed files with 4,163 additions and 653 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/composer.lock export-ignore
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
Expand Down
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,7 +1,6 @@
/.phpcs-cache
/.phpunit.result.cache
/clover.xml
/composer.lock
/coveralls-upload.json
/docs/html/
/laminas-mkdoc-theme.tgz
Expand Down
58 changes: 0 additions & 58 deletions .travis.yml

This file was deleted.

214 changes: 0 additions & 214 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 @@
# laminas-server

[![Build Status](https://travis-ci.com/laminas/laminas-server.svg)](https://travis-ci.com/laminas/laminas-server)
[![Coverage Status](https://coveralls.io/repos/github/laminas/laminas-server/badge.svg)](https://coveralls.io/github/laminas/laminas-server)
[![Build Status](https://github.com/laminas/laminas-server/workflows/Continuous%20Integration/badge.svg)](https://github.com/laminas/laminas-server/actions?query=workflow%3A"Continuous+Integration")

The laminas-server family of classes provides functionality for the various server
classes, including `Laminas\XmlRpc\Server` and `Laminas\Json\Server`.
Expand Down
Loading

0 comments on commit b91fd8a

Please sign in to comment.