Skip to content

chore(deps): update dependency rich to v13.9.3 - autoclosed #57

chore(deps): update dependency rich to v13.9.3 - autoclosed

chore(deps): update dependency rich to v13.9.3 - autoclosed #57

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