-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (41 loc) · 1.11 KB
/
lint.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
37
38
39
40
41
42
43
44
45
---
name: "Lint"
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
lint-yaml:
name: "YAML"
runs-on: ubuntu-22.04
env:
YAML_FILES: |
.github/workflows/*.yml
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y yamllint
- name: Validate YAML Files
run: yamllint $YAML_FILES
shellcheck:
name: "Shell Scripts"
runs-on: ubuntu-22.04
env:
SHELL_FILES: >-
contrib/*.sh
.github/*.sh
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Validate Shell Scripts
run: shellcheck $SHELL_FILES
json:
name: "JSON"
runs-on: ubuntu-22.04
env:
BUILD_INFO: ${{ github.workspace }}/.github/build-info.json
steps:
- uses: actions/checkout@v4
- name: Install Validator
run: sudo apt-get update && sudo apt-get install -y python3-demjson
- name: Run validation
run: jsonlint -v "$BUILD_INFO"