f1c9e79629878d79a6233704fc020d9892aee070
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

1) name: Software Checks
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)   check-signedoff:
12)     runs-on: ubuntu-latest
13)     name: Check Signed Off
14)     steps:
15)       - uses: actions/checkout@master
16)         with:
Jeremy D Restore Build Tools (#170)

Jeremy D authored 1 year ago

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

jdarwood007 authored 3 years ago

18)       - name: Checking Sign off
19)         id: check-signoff
Jeremy D Restore Build Tools (#170)

Jeremy D authored 1 year ago

20)         run: php ./.github/scripts/check-signed-off.php github
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

21)   check-licensing:
22)     runs-on: ubuntu-latest
23)     name: Check Licensing
24)     steps:
25)       - uses: actions/checkout@master
26)         with:
Jeremy D Restore Build Tools (#170)

Jeremy D authored 1 year ago

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

jdarwood007 authored 3 years ago

28)       - name: Checking Licensing
29)         id: check-licensing
Jeremy D Restore Build Tools (#170)

Jeremy D authored 1 year ago

30)         run: php ./.github/scripts/check-license-master.php ./
jdarwood007 Remove Travis and Introduce...

jdarwood007 authored 3 years ago

31)   check-eof:
32)     runs-on: ubuntu-latest
33)     name: Check End of File
34)     steps:
35)       - uses: actions/checkout@master
36)         with:
Jeremy D Restore Build Tools (#170)

Jeremy D authored 1 year ago

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

jdarwood007 authored 3 years ago

38)       - name: Checking End of File
39)         id: check-eof