-
Notifications
You must be signed in to change notification settings - Fork 54
37 lines (35 loc) · 1.2 KB
/
pr-build-lint.yaml
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
37
name: Build and lint Kubernetes resources
on:
push:
branches-ignore:
- master
pull_request:
branches:
- '*'
jobs:
k8s-lint-build-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dashboards/k8s-build/requirements.txt
- name: Lint Python scripts with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 dashboards/k8s-build --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 dashboards/k8s-build --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build resources
run: |
dashboards/k8s-build/bin/clean.py
dashboards/k8s-build/bin/build.py
- name: Lint generated YAML files
run: |
yamllint dashboards/k8s-build/templates
yamllint dashboards/k8s-build/generated