Skip to content

docs: add instructions on how to update MINIMUM_NUMAFLOW_VERSION (#189) #232

docs: add instructions on how to update MINIMUM_NUMAFLOW_VERSION (#189)

docs: add instructions on how to update MINIMUM_NUMAFLOW_VERSION (#189) #232

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Python version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --with dev --no-root
- name: Run tests
run: make test