Release/v6.3.0 #162
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: build | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install terraform | |
run: make tools.terraform | |
- name: Run linter | |
run: make lint | |
- name: Create build | |
run: make build | |
- name: Run tests | |
run: make test | |
- name: Run terraform fmt check | |
run: make terraform-fmtcheck | |
- name: Run tflint | |
run: make terraform-lint |