Skip to content

Fix response namespace parsing #1

Fix response namespace parsing

Fix response namespace parsing #1

Workflow file for this run

name: Run project linters
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Cache packages
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-pypoetry311-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-pypoetry311-
- name: Run linters
run: |
python -m pip install --upgrade pip setuptools wheel poetry
poetry env use 3.11
poetry install
poetry run pre-commit install
poetry run pre-commit run --all-files