We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07996ae commit f215a5eCopy full SHA for f215a5e
.github/workflows/continous_integration.yml
@@ -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
31
+ - name: ${{ matrix.name }}
32
+ uses: laminas/laminas-continuous-integration-action@v1
33
+ with:
34
+ job: ${{ matrix.job }}
0 commit comments