mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-29 07:59:27 +00:00
20 lines
372 B
YAML
20 lines
372 B
YAML
name: Github workflows linter
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows"
|
|
|
|
jobs:
|
|
lint-workflows:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install actionlint
|
|
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest
|
|
|
|
- name: Run actionlint
|
|
run: actionlint
|