forked from jupyterhub/mybinder.org-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 925 Bytes
/
test-yamllint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This is a GitHub workflow defining a set of jobs with a set of steps.
# ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
#
name: Test yamllint
on:
pull_request:
paths:
- "**/*.yaml"
- "**/*.yml"
- ".github/workflows/test-yamllint.yaml"
push:
paths:
- "**/*.yaml"
- "**/*.yml"
- ".github/workflows/test-yamllint.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
- "update-*"
workflow_dispatch:
jobs:
yamllint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- run: pip install yamllint
# We use --no-warnings to reduce output to errors that needs to be fixed
- run: yamllint --config-data=scripts/yamllint-no-secrets.yaml --no-warnings .