From 2525352e696aba0e8070a58911c41d70235b7d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Trifir=C3=B2?= Date: Tue, 24 Oct 2023 15:09:48 +0200 Subject: [PATCH] ci: add github actions smoke test --- .github/workflows/smoke-test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/smoke-test.yml diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml new file mode 100644 index 00000000..9d45016a --- /dev/null +++ b/.github/workflows/smoke-test.yml @@ -0,0 +1,21 @@ +name: Smoke Test +on: + push: + branches: [main] + pull_request: + +jobs: + smoke-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build image + run: | + cd test + docker-compose build + - name: Test image + run: | + cd test + bash -x smoke-test.sh + env: + CI: true