From a219fe1ac31c1640da2dd5239d9bca50dcd083f3 Mon Sep 17 00:00:00 2001 From: YooSunyoung Date: Fri, 10 May 2024 16:10:08 +0200 Subject: [PATCH] Add intergration test github action. --- .github/workflows/integration.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..d19989d --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,27 @@ +# Integration test actions + +name: Integration + +on: + workflow_dispatch: + inputs: + python-version: + type: string + workflow_call: + inputs: + python-version: + type: string + +jobs: + tests: + name: Integration Tests + runs-on: 'ubuntu-22.04' + steps: + - run: sudo apt install --yes docker-compose + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ inputs.python-version }} + - run: python -m pip install --upgrade pip + - run: python -m pip install -r requirements/ci.txt + - run: docker-compose version