Skip to content

fix: do not run bound class setup before setup_cache #38

fix: do not run bound class setup before setup_cache

fix: do not run bound class setup before setup_cache #38

Workflow file for this run

name: unit-tests
on:
pull_request:
push:
branches: [main]
env:
PDM_BUILD_SCM_VERSION: "0.2.2.dev0"
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# 3.9 = oldest tier we still care about for the package; 3.12 = current
python-version: ["3.9", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package (editable)
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -e .
- name: Run unit tests
run: python -m unittest discover -s tests -v