feat: time string format support #199
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 | |