name: CI on: push jobs: lint: runs-on: ubuntu-latest name: Lint steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.11' cache: 'pip' - pip install -e .[dev] - black --check app - isort --check app - flake8 app - mypy app # test: # runs-on: ubuntu-latest # name: Test # steps: # - uses: actions/checkout@v3 # - uses: actions/setup-python@v4 # with: # python-version: '3.11' # cache: 'pip' # - pip install -e .[test] # - pytest