Skip to content

collapsible table

collapsible table #49

Workflow file for this run

name: pip
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Add requirements
run: python -m pip install --upgrade pip setuptools
- name: Build and install
run: pip install --verbose .[test]
# TODO
#- name: Test
# run: python -m pytest