-
Notifications
You must be signed in to change notification settings - Fork 33
43 lines (31 loc) · 929 Bytes
/
test.yml
File metadata and controls
43 lines (31 loc) · 929 Bytes
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
name: Test Make targets
on:
push:
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "true"
- name: Install Ansible
run: make ansible/install ansible/playbooks/ubuntu/install
- name: Install AWS Command Line Interface v2
run: make aws/cli/install/v2 aws/cli/autocomplete
- name: Install Terraform (latest version)
run: make terraform/install
- name: Install terraform-docs
run: make terraform-docs/install
- name: Install checkov
run: make checkov/install
- name: Install tflint
run: make tflint/install
- name: Install tfsec
run: make tfsec/install
- name: Install tfswitch
run: make tfswitch/install
- name: Install terrascan
run: make terrascan/install