Skip to content

Commit f215a5e

Browse files
authored
added Github actions
1 parent 07996ae commit f215a5e

File tree

1 file changed

+34
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)