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