Skip to content

added static (#220) #781

added static (#220)

added static (#220) #781

Workflow file for this run

name: Run pytest
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
name: Check the code with python linters
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python -
poetry config virtualenvs.in-project true
poetry install
- name: Run pytest
run: poetry run pytest