Skip to content

Commit

Permalink
Merge pull request #8 from gsteel/gha-ci
Browse files Browse the repository at this point in the history
Switch from Travis to GitHub actions
  • Loading branch information
weierophinney committed Apr 20, 2021
2 parents 43880b4 + cccc7f4 commit 6262786
Show file tree
Hide file tree
Showing 6 changed files with 3,725 additions and 819 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Continuous Integration"

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

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/
Expand Down
57 changes: 0 additions & 57 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 6262786

Please sign in to comment.