build(deps): bump github.com/hashicorp/hcl/v2 from 2.21.0 to 2.22.0 #1199
Workflow file for this run
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
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
name: Test | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # needed for `only-new-issues` to compare diffs | |
- name: install go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: go1.20-${{ hashFiles('**/go.sum') }} | |
- name: Vet | |
run: go vet ./... | |
- name: setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
- name: write Terraform configuration | |
run: | | |
cat > main.tf <<EOF | |
terraform { | |
required_providers { | |
cloudflare = { | |
source = "cloudflare/cloudflare" | |
version = "~> 4" | |
} | |
} | |
} | |
EOF | |
- name: terraform init | |
run: terraform init | |
- name: go test | |
env: | |
CLOUDFLARE_EMAIL: [email protected] | |
CLOUDFLARE_API_KEY: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa | |
CLOUDFLARE_TERRAFORM_INSTALL_PATH: ${{ github.workspace }} | |
run: make test |