Skip to content

More memory

More memory #14

Workflow file for this run

name: Continuous integration and testing
on: push
jobs:
ci:
strategy:
matrix:
python-version: ["3.10", "3.11"]
poetry-version: ["1.8.3"]
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --with dev
- name: Run CI
run: poetry run python -m pytest