Skip to content

fix(ci,docs): Add poetry-plugin-export to docs workflow #187

fix(ci,docs): Add poetry-plugin-export to docs workflow

fix(ci,docs): Add poetry-plugin-export to docs workflow #187

Workflow file for this run

# Linting workflow for github actions that runs the pre-commit hooks on all
# files in the repository.
name: Lint
# Run this workflow on every push to the repository and on manual trigger.
on:
push:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: Run image
uses: abatilo/actions-poetry@v2
- name: Install linting (dev) dependencies
run: poetry install --only=dev
- name: Run pre-commit hooks
run: SKIP=no-commit-to-branch poetry run pre-commit run --all-files