Skip to content

Merge pull request #317 from OpenPIV/dependabot/github_actions/abatil… #171

Merge pull request #317 from OpenPIV/dependabot/github_actions/abatil…

Merge pull request #317 from OpenPIV/dependabot/github_actions/abatil… #171

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
poetry-version: [1.5.0]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install the project dependencies
run: poetry install
- name: Run the automated tests (for example)
run: poetry run pytest openpiv -v