Skip to content

migrate to poetry (#3) #36

migrate to poetry (#3)

migrate to poetry (#3) #36

Workflow file for this run

name: Test
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "poetry"
- name: Install Python dependencies
run: poetry install --no-interaction --no-root
- name: Install Project
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest