Skip to content

Fix bare installation issues #233

Fix bare installation issues

Fix bare installation issues #233

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.3.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: poetry install -E cli --no-interaction --no-root
#----------------------------------------------
# install your root project
#----------------------------------------------
- name: install library
run: poetry install --no-interaction
- name: Run linters
run: make lint