Skip to content

Commit 6c4dbd6

Browse files
Merge pull request #13 from gsteel/gha-ci
Switch from travis to GitHub actions
2 parents 5de3a87 + ca14785 commit 6c4dbd6

File tree

6 files changed

+4707
-276
lines changed

6 files changed

+4707
-276
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: "Continuous Integration"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- '[0-9]+.[0-9]+.x'
8+
- 'refs/pull/*'
9+
10+
jobs:
11+
matrix:
12+
name: Generate job matrix
13+
runs-on: ubuntu-latest
14+
outputs:
15+
matrix: ${{ steps.matrix.outputs.matrix }}
16+
steps:
17+
- name: Gather CI configuration
18+
id: matrix
19+
uses: laminas/laminas-ci-matrix-action@v1
20+
21+
qa:
22+
name: QA Checks
23+
needs: [matrix]
24+
runs-on: ${{ matrix.operatingSystem }}
25+
strategy:
26+
fail-fast: false
27+
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
28+
steps:
29+
- name: ${{ matrix.name }}
30+
uses: laminas/laminas-continuous-integration-action@v1
31+
with:
32+
job: ${{ matrix.job }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/.phpcs-cache
22
/.phpunit.result.cache
33
/clover.xml
4-
/composer.lock
54
/coveralls-upload.json
65
/docs/html/
76
/laminas-mkdoc-theme.tgz

.travis.yml

-56
This file was deleted.

CHANGELOG.md

-217
This file was deleted.

README.md

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

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

65
This library provides a [PSR-6](https://www.php-fig.org/psr/psr-6/) session
76
persistence adapter for [mezzio-session](https://docs.mezzio.dev/mezzio-session/).

0 commit comments

Comments
 (0)