We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59aa0f6 + 7819fcf commit a366ebdCopy full SHA for a366ebd
1 file changed
.github/workflows/ci-pipeline.yml
@@ -3,19 +3,22 @@ on:
3
push:
4
branches:
5
- main
6
-jobs:
+permissions:
7
+ contents: read
8
+ pull-requests: write
9
+jobs:
10
run_unit_tests:
11
strategy:
12
fail-fast: false
- matrix:
13
+ matrix:
14
php_version: ['7.2','7.4']
-
15
+
16
name: Run Unit Tests for ${{ matrix.php_version }}
17
runs-on: ubuntu-latest
18
steps:
19
- name: Checkout code
20
uses: actions/checkout@v3
21
22
- name: Setup PHP
23
uses: shivammathur/setup-php@v2
24
with:
0 commit comments