Skip to content

Add Doc._.tables

Add Doc._.tables #16

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip" # caching pip dependencies
- name: Install
run: |
python -m pip install -U pip
pip install -e .
pip install pytest
- name: Run tests
shell: bash
run: |
python -m pytest tests