We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a20f90 commit 7bddaecCopy full SHA for 7bddaec
.github/workflows/linters.yml
@@ -90,7 +90,23 @@ jobs:
90
- name: Lint Python
91
run: |
92
make lint-py-build || true
93
- NODE=$(command -v node) make lint-py
+ make lint-py
94
+ lint-yaml:
95
+ if: github.event.pull_request.draft == false
96
+ runs-on: ubuntu-latest
97
+ steps:
98
+ - uses: actions/checkout@v2
99
+ - name: Use Python ${{ env.PYTHON_VERSION }}
100
+ uses: actions/setup-python@v2
101
+ with:
102
+ python-version: ${{ env.PYTHON_VERSION }}
103
+ - name: Environment Information
104
+ run: npx envinfo
105
+ - name: Lint YAML
106
+ run: |
107
+ make lint-yaml-build || true
108
+ make lint-yaml
109
+
110
lint-sh:
111
if: github.event.pull_request.draft == false
112
runs-on: ubuntu-20.04
0 commit comments