Skip to content

Release v1.0.1

Release v1.0.1 #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Python package
on:
push:
branches:
- main
pull_request:
branches:
- main
- rc-**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .
- name: Run black to review standard code format
run: |
black --check --diff .
- name: Test with unittest
run: |
python3 -m unittest tests/*/test_*.py -v