-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (38 loc) · 1013 Bytes
/
Software-Check.yml
File metadata and controls
40 lines (38 loc) · 1013 Bytes
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
name: Software Checks
on:
push:
branches: [ smf21, smf20, master ]
pull_request:
branches: [ smf21, smf20, master ]
workflow_dispatch:
jobs:
check-signedoff:
runs-on: ubuntu-latest
name: Check Signed Off
steps:
- uses: actions/checkout@master
with:
submodules: false
- name: Checking Sign off
id: check-signoff
run: php ./.github/scripts/check-signed-off.php github
check-licensing:
runs-on: ubuntu-latest
name: Check Licensing
steps:
- uses: actions/checkout@master
with:
submodules: false
- name: Checking Licensing
id: check-licensing
run: php ./.github/scripts/check-license-master.php ./
check-eof:
runs-on: ubuntu-latest
name: Check End of File
steps:
- uses: actions/checkout@master
with:
submodules: false
- name: Checking End of File
id: check-eof
run: php ./.github/scripts/check-eof-master.php ./