Skip to content

feat(ci): add GitHub workflows #4

feat(ci): add GitHub workflows

feat(ci): add GitHub workflows #4

Workflow file for this run

name: Test Python Package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Run type checks
run: hatch run types:check