mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-02-06 23:12:43 +00:00
* Fix docstrings linting workflow never running * Trigger file * Remove trigger file * Remove unnecessary trigger
26 lines
441 B
YAML
26 lines
441 B
YAML
name: run docstrings linting
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
paths:
|
|
- "**.py"
|
|
|
|
jobs:
|
|
docstrings-linting:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Hatch
|
|
run: pip install hatch=="1.9.3"
|
|
|
|
- name: ruff docstrings linting
|
|
run: hatch run ruff check haystack
|