Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #333

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #333

Workflow file for this run

name: lint
on:
push:
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/setup-node@v3
with:
node-version: '15'
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
path: .venv
- name: Install Poetry
uses: Gr1N/setup-poetry@v7
- name: Install Dependencies
run: poetry install --extras docs -vv
- name: Run Linters
run: make lint