Skip to content

fix(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.9.0 #2244

fix(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.9.0

fix(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.9.0 #2244

Workflow file for this run

name: Go Tests
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
id: go
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v .
- name: TF tests
run: go test -v --coverprofile coverage.txt -covermode=atomic -parallel 4 $(go list ./... |grep -v 'tests')
- name: Upload coverage to Codecov
if: ${{ always() }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt