Enhance README with detailed project documentation and structure #86
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |