From 2222c4c49299a09fc478b9502bc3c3350a8a5eb9 Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Sat, 26 Aug 2023 21:48:37 +0200 Subject: [PATCH] add integration test pipeline --- .github/workflows/integration_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/integration_test.yml diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml new file mode 100644 index 0000000..afc91ca --- /dev/null +++ b/.github/workflows/integration_test.yml @@ -0,0 +1,18 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: build + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Install dependencies + uses: actions/checkout@v3 + run: docker compose up --build