Skip to content

Updating documents for library name change. #20

Updating documents for library name change.

Updating documents for library name change. #20

Workflow file for this run

# This workflow will install Python dependencies, run tests
name: Test
# on:
# push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: pytest