You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
358 B
11 lines
358 B
name: 'Lint Workflow' |
|
description: 'Lints GitHub Actions Workflow' |
|
runs: |
|
using: "composite" |
|
steps: |
|
- run: pip install --user yamllint |
|
shell: bash |
|
- run: python ${{ github.action_path }}/lint.py .github/workflows |
|
shell: bash |
|
- run: yamllint -f colored -c ${{ github.action_path }}/.yamllint.yml .github/workflows |
|
shell: bash
|
|
|