From b7e12f3804f849695bd6bc958859c5ccb959e069 Mon Sep 17 00:00:00 2001 From: Simon Deziel Date: Wed, 2 Oct 2024 15:00:17 -0400 Subject: [PATCH] github: add unit-tests job Signed-off-by: Simon Deziel --- .github/workflows/tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 721f8e0e..85649002 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,6 +33,21 @@ jobs: run: | tox -e check + unit-tests: + name: Unit tests + runs-on: ubuntu-24.04 + steps: + - name: Repository checkout + uses: actions/checkout@v4 + + - name: Install dependencies + run: | + pip install --upgrade pip tox + + - name: Run unit tests + run: | + tox -e unit + tests: name: Tests strategy: