Skip to content

Migrate serving references to httk-serve #43

Migrate serving references to httk-serve

Migrate serving references to httk-serve #43

Workflow file for this run

name: httk CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
workflow_dispatch:
inputs:
python-version:
description: Python version
required: false
default: "3.12"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: ${{ github.event.inputs.python-version || '3.12' }}
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install -e .[dev]
- name: Run CI
run: make ci