run terraform plugin for all terraform state commands (not just `stat… #1594
Workflow file for this run
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: Test and Validate | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '.github/ISSUE_TEMPLATE/**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.github/ISSUE_TEMPLATE/**' | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ^1.18 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Test | |
run: make test | |
- name: Validate | |
run: make validate | |
golangci: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set up Go 1.x" | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Lint with golanci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# version of golangci-lint to use | |
# Version should stay in sync with version used for local linting (lint job in Makefile). | |
version: v1.50.1 |