Skip to content

feat: time string format support #199

feat: time string format support

feat: time string format support #199

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git
uses: actions/checkout@v2
- name: Install UV
uses: astral-sh/setup-uv@v6
with:
python-version: 3.9
enable-cache: true
- name: Install dependencies
run: uv sync --locked --dev
- name: Run linters
run: uv run mypy ./src
- name: Run tests
run: uv run pytest