Skip to content

install poetry on ci. #3

install poetry on ci.

install poetry on ci. #3

Workflow file for this run

name: Python package
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Tests
run: |
pip install poetry
poetry install
poetry run pytest -n auto