Skip to content

Add Option to use Terraform Configuration in TestStep #209

Add Option to use Terraform Configuration in TestStep

Add Option to use Terraform Configuration in TestStep #209

Workflow file for this run

# Continuous integration handling for Go
name: ci-go
on:
pull_request:
paths:
- .github/workflows/ci-go.yml
- .golangci.yml
- go.mod
- '**.go'
permissions:
contents: read
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version-file: 'go.mod'
- run: go mod download
- uses: golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 # v3.6.0
test:
name: test (Go v${{ matrix.go-version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-13
- windows-latest
- ubuntu-latest
go-version:
- '1.20'
- '1.19'
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: ${{ matrix.go-version }}
- run: go mod download
- run: go test -v -cover ./...