chore(deps): bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.34.0 to 2.35.0 #478
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
# This GitHub action runs your tests for each commit push and/or PR. Optionally | |
# you can turn it on using a cron schedule for regular testing. | |
# | |
name: Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.), | |
# we recommend testing at a regular interval not necessarily tied to code changes. This will | |
# ensure you are alerted to something breaking due to an API change, even if the code did not | |
# change. | |
# schedule: | |
# - cron: '0 13 * * *' | |
jobs: | |
# ensure the code builds... | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
check-latest: true | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
go build -v . | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Use go to auto-generate code | |
run: go generate ./... | |
- name: Check that there are no difference in the genrated code | |
run: | | |
git diff --compact-summary --exit-code || \ | |
(echo; echo "Unexpected difference in directories after code generation. Run 'go generate ./...' command and commit."; exit 1) | |
# run acceptance tests in a matrix with Terraform core versions | |
test: | |
name: Matrix Test | |
# needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
# list whatever Terraform versions here you would like to support | |
terraform: | |
- '0.12.*' | |
- '0.13.*' | |
- '0.14.*' | |
- '0.15.*' | |
- '1.0.*' | |
- '1.1.*' | |
- '1.2.*' | |
- '1.3.*' | |
- '1.4.*' | |
- '1.5.*' | |
- '1.6.*' | |
- '1.7.*' | |
- '1.8.*' | |
- '1.9.*' | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Setup Terraform ${{ matrix.terraform }} | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: ${{ matrix.terraform }} | |
terraform_wrapper: false | |
- name: Start the acceptance test stack | |
run: make create-env | |
- name: Wait for healty services | |
run: | | |
sleep 60 | |
# FIXME | |
# curl -s --retry 20 --retry-delay 10 --connect-timeout 5 --max-time 10 --retry-connrefused http://localhost:8000/healthz | |
# curl -s --retry 20 --retry-delay 10 --connect-timeout 5 --max-time 10 --retry-connrefused http://localhost:3000/ | |
- name: Import fake data | |
run: make load-fixtures | |
- name: Run acceptance test | |
timeout-minutes: 10 | |
env: | |
TF_ACC: "1" | |
DRONE_SERVER: http://localhost:8000/ | |
DRONE_TOKEN: 5PVYqFHjdYWpzyOk6PVj9OUQULibBJeL | |
DRONE_USER: terraform | |
run: make testacc | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
TERRAFORM_VERSION: ${{ matrix.terraform }} | |
with: | |
env_vars: TERRAFORM_VERSION | |
- name: Stop the acceptance test stack | |
if: always() | |
run: docker compose -f ".github/workflows/acceptance-tests/docker-compose.yaml" down |