Skip to content

feat: Initial BCL/GPO API client and response models #2

feat: Initial BCL/GPO API client and response models

feat: Initial BCL/GPO API client and response models #2

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- run: pipx install poetry==2.0.1
- run: poetry sync --group dev
- run: poetry run pre-commit run --all-files
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pipx install poetry==2.0.1
- run: poetry sync --group dev
- run: poetry run pytest --cov=altissimo --cov-report=term-missing --cov-fail-under=80
build:
needs: [lint, test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- run: pipx install poetry==2.0.1
- run: poetry build