Skip to content

Don't assume object hashes are unique in caching logic #37

Don't assume object hashes are unique in caching logic

Don't assume object hashes are unique in caching logic #37

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
if: matrix.python-version == '3.7'
run: |
pip install --upgrade pip
pip install ".[dev]"
- name: Install dependencies
if: matrix.python-version != '3.7'
run: |
pip install uv
uv pip install --system ".[dev]"
- name: Test with pytest
run: |
pytest