Skip to content

Fix timestamp type rendering in README table #14

Fix timestamp type rendering in README table

Fix timestamp type rendering in README table #14

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
pytest:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . pytest
- name: Run tests
run: python -m pytest