From 93233f61484e3bf531383c720a1b46a2749bc3f1 Mon Sep 17 00:00:00 2001 From: Kuba Mazurek Date: Tue, 27 Jul 2021 21:23:10 +0200 Subject: [PATCH] Add Actions workflow for integration tests --- .github/workflows/integration.yml | 54 +++++++++++++++++++++++++++++++ 1 file changed, 54 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 00000000..a1edcad8 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,54 @@ +name: Integration tests + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + integration-test: + name: Run integration tests + runs-on: goth + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Configure python + uses: actions/setup-python@v2 + with: + python-version: '3.8' + + - name: Configure poetry + uses: Gr1N/setup-poetry@v4 + with: + poetry-version: 1.1.4 + + - name: Install dependencies + run: poetry install + + - name: Disconnect Docker containers from default network + continue-on-error: true + # related to this issue: https://github.com/moby/moby/issues/23302 + run: | + docker network inspect docker_default + sudo apt-get install -y jq + docker network inspect docker_default | jq ".[0].Containers | map(.Name)[]" | tee /dev/stderr | xargs --max-args 1 -- docker network disconnect -f docker_default + + - name: Remove Docker containers + continue-on-error: true + run: docker rm -f $(docker ps -a -q) + + - name: Restart Docker daemon + # related to this issue: https://github.com/moby/moby/issues/23302 + run: sudo systemctl restart docker + + - name: Log in to GitHub Docker repository + run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${{github.actor}} --password-stdin + + - name: Run unit tests + env: + GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: poetry run poe integration_test