chore(deps): bump github.com/hashicorp/terraform-plugin-framework-tim… #133
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: Acceptance Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- release-* | |
paths-ignore: | |
- 'README.md' | |
- 'Makefile' | |
- 'docs/**' | |
- 'examples/**' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: '1.22' | |
- name: Run tests | |
timeout-minutes: 120 | |
env: | |
TF_ACC: "1" | |
BLOXONE_CSP_URL: ${{ secrets.BLOXONE_CSP_URL }} | |
BLOXONE_API_KEY: ${{ secrets.BLOXONE_API_KEY }} | |
DHCP_HOST: ${{ secrets.DHCP_HOST }} | |
DNS_HOST: ${{ secrets.DNS_HOST }} | |
run: | | |
go test $(go list ./... | grep -v 'vendor') -timeout 120m -v -cover |