Skip to content

Commit 8551aae

Browse files
goodbye travis (widdix#472)
1 parent 9b4fab8 commit 8551aae

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

Diff for: .github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
24+
pip install cfn-lint==0.34.0
25+
cfn-lint -i W2001 W4002 W6001 -t '**/*.yaml'
26+
27+
- name: license
28+
run: |
29+
find . -type f -name '*.yaml' | while read file; do set -ex && grep -q 'LICENSE-2.0' "$file"; done;

Diff for: .travis.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)