Skip to content

Remove pip caching #373

Remove pip caching

Remove pip caching #373

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system flake8 pytest
if [ -f requirements.txt ]; then uv pip install --system -r requirements.txt; fi
if [ -f optional_requirements.txt ]; then uvpip install --system -r optional_requirements.txt; fi
uv pip install --system -e .
- name: Test with pytest
run: |
pytest
env:
NUMBA_BOUNDSCHECK: 1