From bdef189ce135b28d143c523541a7247de10b2620 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sat, 21 Oct 2023 12:49:05 +0200 Subject: [PATCH] try to run all offline tests in CI --- .github/workflows/ci.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b3428d0d..73974590 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,14 +5,18 @@ on: push: jobs: - lint: - name: Lint + tox: + name: chatmail tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Lint chatmaild + - name: run chatmaild tests working-directory: chatmaild run: pipx run tox - - name: Lint deploy-chatmail + - name: run deploy-chatmail offline tests working-directory: deploy-chatmail run: pipx run tox + - name: run deploy-chatmail offline tests + working-directory: deploy-chatmail + run: pipx run tox +