Skip to content

Fix memory estimation (#25) #102

Fix memory estimation (#25)

Fix memory estimation (#25) #102

Workflow file for this run

# .github/workflows/tests.yml
name: tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest