Skip to content

Commit

Permalink
Merge pull request #64 from weierophinney/feature/github-actions
Browse files Browse the repository at this point in the history
Switch from Travis to Laminas CI workflow
  • Loading branch information
weierophinney authored May 26, 2021
2 parents 3b0d993 + 8895f07 commit 0ead564
Show file tree
Hide file tree
Showing 26 changed files with 5,935 additions and 1,194 deletions.
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
6 changes: 6 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extensions": [
"inotify",
"swoole"
]
}
52 changes: 0 additions & 52 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .travis/install_inotify.sh

This file was deleted.

10 changes: 0 additions & 10 deletions .travis/install_swoole.sh

This file was deleted.

34 changes: 0 additions & 34 deletions .travis/modulecache.sh

This file was deleted.

Loading

0 comments on commit 0ead564

Please sign in to comment.