generated from aljawaid/KanboardSkeletonPlugin
-
-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (35 loc) · 1.22 KB
/
php-compatibility-7.4.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
####################################################
################ PHP Compatibility #################
######## Save the contents of this file as #########
## '.github/workflows/php-compatibility-7.4.yaml' ##
####################################################
name: PHP 7.4
on:
push:
pull_request:
branches: [master, main]
permissions:
contents: read
jobs:
setup:
name: Scan Code
runs-on: ubuntu-latest
permissions:
contents: read # for checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: PHP Setup
uses: shivammathur/setup-php@v2
with:
php-version: '7.4-'
ini-values: short_open_tag=On
coverage: none
- name: Run PHP Compatibility 7.4
uses: pantheon-systems/phpcompatibility-action@v1
with:
test-versions: '7.4-'
# Specify directories to check
paths: ${{ github.workspace }}/Plugin.php ${{ github.workspace }}/Controller/ ${{ github.workspace }}/Locale/ ${{ github.workspace }}/Helper/ ${{ github.workspace }}/Model/ ${{ github.workspace }}/Template/