Skip to content

Fix running with pypy #20

Fix running with pypy

Fix running with pypy #20

Workflow file for this run

name: linters
on: [push]
jobs:
run_linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.11"
- name: Prepare project for development
run: |
python -m pip install poetry
python -m poetry config virtualenvs.create false
python -m poetry install
- name: Run linters
run: ./lint.sh