From b2b726ed9a288edf0d899420878873a39058f2e4 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 1 Apr 2024 20:04:19 +0200 Subject: [PATCH] Added testing to CI --- .github/workflows/lint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1724078..1bfbcdc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,6 +27,17 @@ jobs: with: commit_message: Adjusted files for isort & autopep + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - run: python -m pip install --upgrade pip + - run: python -m pip install -r requirements.txt + - run: python -m pytest + tag: runs-on: ubuntu-latest needs: lint