From 73e3294383a0b706613e8f70dcac1b400d61fae4 Mon Sep 17 00:00:00 2001 From: Dmitry Titenkov Date: Mon, 16 Feb 2026 13:55:47 +0300 Subject: [PATCH] ci_pytest --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 389ecf4..3cdbb39 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,3 +30,25 @@ jobs: - name: Flake8 Check run: flake8 . + + tests: + name: Pytest + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + + - name: Upgrade pip + run: python -m pip install --upgrade pip + + - name: Install Dependencies + run: pip install -r requirements.txt + + - name: Run Pytest + run: pytest -v \ No newline at end of file