Skip to content

Bump pytest-cov from 5.0.0 to 6.0.0 in /server #563

Bump pytest-cov from 5.0.0 to 6.0.0 in /server

Bump pytest-cov from 5.0.0 to 6.0.0 in /server #563

Workflow file for this run

name: "Lint"
on: [ push, pull_request, workflow_call ]
jobs:
flake8:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install flake8
- run: flake8
black:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install "black>=23,<24"
- run: black --check .
mypy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install -r dev-requirements.txt
- run: mypy .