Skip to content

Merge branch 'reduce-memory-consumption' into simplify-io-w-reduce-me… #51

Merge branch 'reduce-memory-consumption' into simplify-io-w-reduce-me…

Merge branch 'reduce-memory-consumption' into simplify-io-w-reduce-me… #51

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
test-updaters:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements_dev.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . -r requirements_dev.txt
- name: Test with pytest
run: |
pytest -v