diff --git a/.github/workflows/code-cov.yml b/.github/workflows/code-cov.yml index 0185514..0e45dd5 100644 --- a/.github/workflows/code-cov.yml +++ b/.github/workflows/code-cov.yml @@ -6,12 +6,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: "3.10" - - name: Install dependencies + python-version: "3.11" + - name: Install main dependencies run: pip install -r requirements.txt + - name: Install dev dependencies + run: pip install -r requirements-dev.txt - name: Run tests and collect coverage run: pytest --cov app - name: Upload coverage to Codecov