Skip to content

fix: httpx request hook url is not string #47

fix: httpx request hook url is not string

fix: httpx request hook url is not string #47

Workflow file for this run

name: Pylint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
pylint:
name: Pylint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r "{{cookiecutter.project_name}}/requirements.txt"
- name: Analysing the code with pylint
run: |
pylint --disable=C0114,W0613,C0115,W1113,W0223,C0116,R0903 --max-line-length=120 $(git ls-files '*.py')