6ded005846914ffada22bd1c775fc0007d91862a
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

1) name: PHP Syntax Check
2) 
3) on:
4)   push:
Jeremy D Upgrade package (#172)

Jeremy D authored 1 year ago

5)     branches: [ smf21, master ]
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

6)   pull_request:
Jeremy D Upgrade package (#172)

Jeremy D authored 1 year ago

7)     branches: [ smf21, master ]
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

8) 
9)   workflow_dispatch:
10) jobs:
11)   syntax-checker:
12)     runs-on: ${{ matrix.operating-system }}
13)     strategy:
14)       matrix:
15)         operating-system: [ ubuntu-latest ]
Jeremy D Upgrade package (#172)

Jeremy D authored 1 year ago

16)         php: [ '7.4', '8.0', '8.1' ]
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

17)     name: PHP ${{ matrix.php }} Syntax Check
18)     steps:
19)       - uses: actions/checkout@master
20)         with:
Jeremy D Master (#171)

Jeremy D authored 1 year ago

21)           submodules: false
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

22)       - name: Setup PHP
23)         id: SetupPHP
24)         uses: nanasess/setup-php@master
25)         with:
26)           php-version: ${{ matrix.php }}