We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47612a8 commit 2e39eb7Copy full SHA for 2e39eb7
.github/workflows/chatops.yaml
@@ -0,0 +1,36 @@
1
+name: ChatOps checks
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ paths:
8
+ - "chatops_deployment/*"
9
+ - ".github/workflows/chatops.yaml"
10
+ pull_request:
11
12
13
14
15
+jobs:
16
+ lint:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Check Terraform
22
+ run: |
23
+ sudo snap install terraform --classic
24
+ cd chatops_deployment/terraform
25
+ terraform validate
26
+ cd ../..
27
28
+ - name: Check Ansible
29
30
+ pip install ansible-lint
31
+ ansible-lint chatops_deployment/ansible
32
33
+ - name: Run ShellCheck
34
+ uses: ludeeus/action-shellcheck@master
35
+ with:
36
+ scandir: './chatops_deployment'
0 commit comments