Skip to content

Bump github.com/hashicorp/terraform-plugin-framework from 1.3.5 to 1.4.2 #381

Bump github.com/hashicorp/terraform-plugin-framework from 1.3.5 to 1.4.2

Bump github.com/hashicorp/terraform-plugin-framework from 1.3.5 to 1.4.2 #381

Workflow file for this run

name: Unit Tests
# Runs unit tests for pull requests and pushes to master.
on:
pull_request:
push:
branches:
- master
jobs:
unit:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Vet
run: make vet
- name: Test
run: make test