mirror of
https://github.com/docling-project/docling-serve.git
synced 2026-04-26 19:26:05 +00:00
Signed-off-by: rmdg88 <rmdg88@gmail.com> Signed-off-by: Rui Dias Gomes <66125272+rmdg88@users.noreply.github.com>
24 lines
563 B
YAML
24 lines
563 B
YAML
name: Lint GitHub Actions workflows
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
paths:
|
|
- '.github/**'
|
|
pull_request:
|
|
branches: ["main"]
|
|
paths:
|
|
- '.github/**'
|
|
|
|
jobs:
|
|
actionlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Download actionlint
|
|
id: get_actionlint
|
|
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
|
shell: bash
|
|
- name: Check workflow files
|
|
run: PATH=".:$PATH" make action-lint
|
|
shell: bash
|