We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b4fab8 commit 8551aaeCopy full SHA for 8551aae
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on: push
4
5
+jobs:
6
+ build:
7
+ runs-on: 'ubuntu-latest'
8
9
+ steps:
10
11
+ - uses: 'actions/checkout@v2'
12
13
+ - uses: 'actions/setup-python@v2'
14
+ with:
15
+ python-version: '3.8'
16
17
+ - name: yamlllint
18
+ run: |
19
+ pip install yamllint==1.24.2
20
+ yamllint .
21
22
+ - name: cfn-lint
23
24
+ pip install cfn-lint==0.34.0
25
+ cfn-lint -i W2001 W4002 W6001 -t '**/*.yaml'
26
27
+ - name: license
28
29
+ find . -type f -name '*.yaml' | while read file; do set -ex && grep -q 'LICENSE-2.0' "$file"; done;
.travis.yml
0 commit comments