File tree Expand file tree Collapse file tree 5 files changed +4707
-59
lines changed Expand file tree Collapse file tree 5 files changed +4707
-59
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change 1
1
/.phpcs-cache
2
2
/.phpunit.result.cache
3
3
/clover.xml
4
- /composer.lock
5
4
/coveralls-upload.json
6
5
/docs /html /
7
6
/laminas-mkdoc-theme.tgz
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# mezzio-session-cache
2
2
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" )
5
4
6
5
This library provides a [ PSR-6] ( https://www.php-fig.org/psr/psr-6/ ) session
7
6
persistence adapter for [ mezzio-session] ( https://docs.mezzio.dev/mezzio-session/ ) .
You can’t perform that action at this time.
0 commit comments