Skip to content

Commit 2e39eb7

Browse files
committed
ENH: Add a GitHub workflow for the chatops directory
Check the terraform config is valid and run ansible lint and shellcheck
1 parent 47612a8 commit 2e39eb7

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/chatops.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
12+
- "chatops_deployment/*"
13+
- ".github/workflows/chatops.yaml"
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+
run: |
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

Comments
 (0)