Skip to content

fix: health verification #17

fix: health verification

fix: health verification #17

Workflow file for this run

# .github/workflows/ci.yml
name: CI Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Cache Poetry dependencies
uses: actions/cache@v3
with:
path: |
~/.cache/pypoetry/virtualenvs
~/.cache/pypoetry/cache
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies with dev group
run: poetry install --with dev --no-interaction
- name: Run all validations with Tox
run: poetry run tox
- name: Build Package
run: poetry build