-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (34 loc) · 988 Bytes
/
validate.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
name: Validate-Configs
on:
push:
branches: [ '*' ]
jobs:
validate-music-config-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Validate Music YAML file
run: make run-yamllint-music
validate-hue-config-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Validate Hue YAML file
run: make run-yamllint-hue
validate-schedule-config-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Validate Schedule YAML file
run: make run-yamllint-schedule
validate-music-config-spotify-uris:
needs: validate-music-config-yaml
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2
- name: Run validation script
run: make run-spotify-validation-music