ci: re-enable signed-off-by check on workflows
Enable commit signed-off-by check like previously done on Travis-CI. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
This commit is contained in:
parent
ee7282dc42
commit
af48fcea16
|
@ -7,12 +7,17 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Print the environment
|
||||
run: |
|
||||
uname -a
|
||||
lscpu
|
||||
free
|
||||
pwd
|
||||
- name: Signed commit check
|
||||
run: |
|
||||
./ci/check-signed-off-by.sh
|
||||
- name: Mynewt install
|
||||
run: |
|
||||
./ci/mynewt_install.sh
|
||||
|
|
|
@ -27,6 +27,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
- name: Print the environment
|
||||
run: |
|
||||
|
@ -34,6 +35,9 @@ jobs:
|
|||
lscpu
|
||||
free
|
||||
pwd
|
||||
- name: Signed commit check
|
||||
run: |
|
||||
./ci/check-signed-off-by.sh
|
||||
- name: Install stable Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
|
Loading…
Reference in New Issue