mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-31 00:57:37 +00:00
21 lines
359 B
YAML
21 lines
359 B
YAML
name: run docstrings linting
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- docstrings-linting
|
|
|
|
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
|