Skip to content

Bump github.com/hashicorp/terraform-plugin-testing from 1.5.1 to 1.8.0 #509

Bump github.com/hashicorp/terraform-plugin-testing from 1.5.1 to 1.8.0

Bump github.com/hashicorp/terraform-plugin-testing from 1.5.1 to 1.8.0 #509

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@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Vet
run: make vet
- name: Test
run: make test