Skip to content

Implement lazy loading of raw data for local files #140

Implement lazy loading of raw data for local files

Implement lazy loading of raw data for local files #140

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
paths-ignore:
- 'docs/**'
workflow_call:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
numpy: ["--pre numpy"]
include:
- python-version: "3.9"
numpy: numpy==1.22.0
- python-version: "3.10"
numpy: numpy==1.22.0
- python-version: "3.11"
numpy: numpy==1.23.2
- python-version: "3.12"
numpy: numpy==1.26.0
steps:
- uses: actions/checkout@v4
with:
lfs: true
- 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') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Setup Poetry
run: |
pip install -U pip
pip install poetry==1.7.0
poetry install --only dev
poetry run pip install ${{matrix.numpy}}
- name: Pre-commit
run: |
poetry run pre-commit run --all-files
- name: Pytest
run: |
poetry run pytest -Werror --cov --cov-report term-missing --cov-fail-under=100