Skip to content

chore(deps): update dependency typer to v0.12.5 #77

chore(deps): update dependency typer to v0.12.5

chore(deps): update dependency typer to v0.12.5 #77

Workflow file for this run

name: Type checking and linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11.4
- name: Install dependencies
run: |
pip install hatch
pip install -r requirements.txt
- name: Type checking
run: hatch run typecheck
- name: Linting
run: hatch run lint