Skip to content

Allow implicit __name__. #117

Allow implicit __name__.

Allow implicit __name__. #117

Workflow file for this run

name: check
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org/ | python -
- name: Configure Poetry
run: poetry config virtualenvs.in-project true
- name: Install dependencies
run: poetry install --with check
- name: Run type checks
run: poetry run mypy .