diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d03d0de..f14591e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,6 +13,7 @@ jobs: run: python3 -m pip install tox - name: Run linters run: tox -e lint + unit-test: name: Unit tests runs-on: ubuntu-latest @@ -23,8 +24,12 @@ jobs: run: python -m pip install tox - name: Run tests run: tox -e unit + integration-test-microk8s: name: Integration tests (microk8s) + needs: + - lint + - unit-test runs-on: ubuntu-latest steps: - name: Checkout