From 127a32cbcfc16b18b09003dc2c8445ee633af7a4 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Sat, 18 Apr 2020 15:33:11 +0200 Subject: [PATCH] ci: add integration test workflow --- .github/workflows/integration.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 000000000..6a1c942df --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,25 @@ +name: Integration + +on: [push, pull_request] + +jobs: + Tests: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.8] + steps: + - uses: actions/checkout@v2 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + + - name: Install tox + shell: bash + run: pip install --upgrade tox + + - name: Execute integration tests + shell: bash + run: tox -e integration