new structure, only one entrypoint to build the whole /forge
#11
This file contains 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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
- name: Format Code | |
run: terraform fmt -check -recursive | |
- name: Get Modules | |
run: terraform get | |
- name: Init Terraform | |
run: terraform init | |
- name: Validate Configuration | |
run: terraform validate |