Skip to content

chore(pip)(deps-dev): bump idna from 3.12 to 3.15 in /tests #11

chore(pip)(deps-dev): bump idna from 3.12 to 3.15 in /tests

chore(pip)(deps-dev): bump idna from 3.12 to 3.15 in /tests #11

Workflow file for this run

name: PR Checks
on:
pull_request:
permissions:
contents: read
jobs:
format_and_typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.2.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5.5.0
with:
python-version: "3.13.11"
- name: Install Poetry
run: python -m pip install poetry
- name: Install dependencies
run: make install-tools
- name: Run format check
run: make format-check
- name: Run type check
run: make typecheck