mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-31 09:10:15 +00:00
* ci: use ubuntu-slim where makes sense * revert some changes * test more actions * test sync docs too * revert * set go version
26 lines
512 B
YAML
26 lines
512 B
YAML
name: Github workflows linter
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/**"
|
|
|
|
jobs:
|
|
lint-workflows:
|
|
runs-on: ubuntu-slim
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ">=1.24.0"
|
|
|
|
- name: Install actionlint
|
|
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest
|
|
|
|
- name: Run actionlint
|
|
env:
|
|
SHELLCHECK_OPTS: --exclude=SC2102
|
|
run: actionlint
|