f1c9e79629878d79a6233704fc020d9892aee070
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

1) name: PHP Syntax Check
2) 
3) on:
4)   push:
5)     branches: [ smf21, smf20, master ]
6)   pull_request:
7)     branches: [ smf21, smf20, master ]
8) 
9)   workflow_dispatch:
10) jobs:
11)   syntax-checker:
12)     runs-on: ${{ matrix.operating-system }}
13)     strategy:
14)       matrix:
15)         operating-system: [ ubuntu-latest ]
16)         php: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]
17)     name: PHP ${{ matrix.php }} Syntax Check
18)     steps:
19)       - uses: actions/checkout@master
20)         with:
Jeremy D Restore Build Tools (#170)

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 }}