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:
Fabio Utzig 2020-09-29 09:26:29 -03:00 committed by Fabio Utzig
parent ee7282dc42
commit af48fcea16
2 changed files with 9 additions and 0 deletions

View File

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

View File

@ -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: