From ca093eb81e73d03d2c2a743b0ddad37e461e1b2d Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 30 Jan 2023 11:59:26 +0100 Subject: [PATCH] Add emulation and test workflow. Signed-off-by: Pol Henarejos --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..1cc72fd --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,33 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "Emulation and test" + +on: + push: + branches: [ "master", "development" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "master", "development" ] + schedule: + - cron: '23 5 * * 4' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: build + run: ./tests/build-in-docker.sh + - name: run and test + run: ./tests/run-test-in-docker.sh