-
-
Notifications
You must be signed in to change notification settings - Fork 146
80 lines (66 loc) · 2.54 KB
/
lint-flag-files.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: "GO Feature Flag linting"
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
examples-linting:
runs-on: ubuntu-latest
name: Lint all the examples configuration files
steps:
- name: Checkout
uses: actions/checkout@v4
- name: data_export_file
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/data_export_file/flags.goff.yaml
- name: data_export_googlecloudstorage
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/data_export_googlecloudstorage/flags.goff.yaml
- name: data_export_s3
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/data_export_s3/flags.goff.yaml
- name: demo
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/demo/demo-flags.goff.yaml
- name: retriever_configmap
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_configmap/flags.goff.yaml
- name: retriever_file
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_file/flags.goff.yaml
- name: retriever_github
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_github/flags.goff.yaml
- name: retriever_http
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_http/flags.goff.yaml
- name: retriever_multiple_config_files_1
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_multiple_config_files/flags.goff.yaml
- name: retriever_multiple_config_files_2
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/retriever_multiple_config_files/flags2.goff.yaml
- name: rollout_experimentation
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/rollout_experimentation/flags.goff.yaml
- name: rollout_progressive
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/rollout_progressive/flags.goff.yaml
- name: rollout_scheduled
uses: go-feature-flag/gofeatureflag-lint-action@v1
with:
flag-file: ./examples/rollout_scheduled/flags.goff.yaml