Skip to content

feat: add items iterator #28

feat: add items iterator

feat: add items iterator #28

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"
- run: |
pip install hatch
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"
- run: |
pip install hatch
hatch run checks:linting
formatting:
runs-on: "ubuntu-latest"
name: Formatting
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: |
pip install hatch
hatch run checks:formatting