Skip to content

feat: memory profiling #278

feat: memory profiling

feat: memory profiling #278

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
jobs:
typing:
runs-on: "ubuntu-latest"
name: Type checking
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install hatch
- name: Type checking
run: |
hatch run checks:typing
linting:
runs-on: "ubuntu-latest"
name: Linting
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install hatch
- name: Linting
run: |
hatch run checks:linting