Skip to content

Bump mypy from 1.12.1 to 1.13.0 in /server #393

Bump mypy from 1.12.1 to 1.13.0 in /server

Bump mypy from 1.12.1 to 1.13.0 in /server #393

Workflow file for this run

name: "Lint"
on: [push, pull_request]
defaults:
run:
working-directory: server
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install black~=23.0
- run: black --diff .
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install flake8
- run: flake8
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install -Ur mypy-requirements.txt
- run: mypy .