Skip to content

fix: ssl in httpx (#232) #319

fix: ssl in httpx (#232)

fix: ssl in httpx (#232) #319

Workflow file for this run

name: Code quality
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Install poetry
run: pipx install poetry
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: poetry install --all-extras
- name: Coding style check
run: poetry run ruff check .
type:
name: Type check
runs-on: ubuntu-latest
steps:
- name: Install poetry
run: pipx install poetry
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: poetry install --all-extras
- name: Type check
run: poetry run pyright