From dd23f47f452ad0250088997661f3162020bc57f8 Mon Sep 17 00:00:00 2001 From: MSec Date: Fri, 25 Oct 2024 16:56:01 +0100 Subject: [PATCH] add jobs --- .github/workflows/actions.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 285d682..99050d3 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -5,7 +5,6 @@ on: [push, pull_request] jobs: setup: name: Setup python - runs-on: ubuntu-latest steps: - name: Checkout code @@ -35,11 +34,17 @@ jobs: python -m poetry install tests: + name: Run tests + runs-on: ubuntu-latest + steps: - name: Run tests run: | python -m poetry run python -m pytest -sxv lint: + name: Enforce linter rules + runs-on: ubuntu-latest + steps: - name: Run black uses: psf/black@stable with: