Skip to content

Improve caller detection #186

Improve caller detection

Improve caller detection #186

Workflow file for this run

---
name: Lint
on:
pull_request:
branches: ["*"]
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: poetry install --no-interaction --no-root --with dev
- name: Check code formatting
run: poetry run black .
- name: Lint code
run: poetry run pyright
- name: Run tests
run: poetry run pytest