Add github actions

Add shellcheck, shellfmt, release, prerelease, functionnal tests
This commit is contained in:
Thibault Ayanides
2021-01-13 11:56:35 +01:00
parent 45ccd337b4
commit 3f20f99e50
4 changed files with 161 additions and 0 deletions

19
.github/workflows/functionnal-tests.yml vendored Normal file
View File

@ -0,0 +1,19 @@
---
name: Run functionnal tests
on:
- pull_request
jobs:
functionnal-tests-docker-debian9:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run the tests debian9
run: ./tests/docker_build_and_run_tests.sh debian9
functionnal-tests-docker-debian10:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run the tests debian10
run: ./tests/docker_build_and_run_tests.sh debian10