Skip to content

FIX pytest call on CI #25

FIX pytest call on CI

FIX pytest call on CI #25

Workflow file for this run

name: Pipeline
on:
push:
branches: "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.11.1'
- name: Install poetry
run: pipx install --python python3.11 poetry
- name: Install dependencies
run: poetry install
- name: Check ruff
run: poetry run ruff .
- name: Mypy check
run: poetry run mypy .
- name: Pytest
run: poetry run pytest