Skip to content

Commit 3f746bd

Browse files
committed
Move to github action
Signed-off-by: Stéphane Demonchaux <[email protected]>
1 parent fc6fabe commit 3f746bd

File tree

6 files changed

+2579
-76
lines changed

6 files changed

+2579
-76
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/.coveralls.yml export-ignore
22
/.gitattributes export-ignore
3+
/composer.lock export-ignore
34
/.github/ export-ignore
45
/.gitignore export-ignore
5-
/.travis.yml export-ignore
66
/docs/ export-ignore
77
/mkdocs.yml export-ignore
88
/phpcs.xml export-ignore
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "Continuous Integration"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- '[0-9]+.[0-9]+.x'
8+
- 'refs/pull/*'
9+
tags:
10+
11+
jobs:
12+
matrix:
13+
name: Generate job matrix
14+
runs-on: ubuntu-latest
15+
outputs:
16+
matrix: ${{ steps.matrix.outputs.matrix }}
17+
steps:
18+
- name: Gather CI configuration
19+
id: matrix
20+
uses: laminas/laminas-ci-matrix-action@v1
21+
22+
qa:
23+
name: QA Checks
24+
needs: [matrix]
25+
runs-on: ${{ matrix.operatingSystem }}
26+
strategy:
27+
fail-fast: false
28+
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
29+
steps:
30+
- name: ${{ matrix.name }}
31+
uses: laminas/laminas-continuous-integration-action@v1
32+
with:
33+
job: ${{ matrix.job }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/clover.xml
2-
/composer.lock
32
/coveralls-upload.json
43
/docs/html/
54
/laminas-mkdoc-theme.tgz

.travis.yml

-72
This file was deleted.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# laminas-test
22

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

65
laminas-test provides tools to facilitate unit testing of your Laminas
76
Framework applications. At this time, we offer facilities to enable testing of

0 commit comments

Comments
 (0)