Bump starlette from 0.26.1 to 0.27.0 in /requirements (#1) #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
code_quality: | |
runs-on: ubuntu-latest | |
name: Code Checks | |
container: python:3.9 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run script | |
run: | | |
pip install pdm | |
pdm install -G dev | |
pdm list | |
- name: Black check | |
run: pdm run black --check fraand | |
- name: Isort check | |
run: pdm run isort --check fraand | |
- name: Flake8 check | |
run: pdm run flake8 fraand |