Skip to content

No strptime format #1670

No strptime format

No strptime format #1670

Workflow file for this run

name: Test package
on: [ push, pull_request ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.7"
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests with coverage
run: |
uv run coverage run -m pytest
uv run coverage xml -i
uv run coverage report
- name: Publish to Coveralls
uses: coverallsapp/github-action@v2.3.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Run Ruff
run: uv run ruff check --output-format=github --select E4,E7,E9,F