Skip to content

Added support for the ForwardZone and upgraded Terraform and Go Lang version #225

Added support for the ForwardZone and upgraded Terraform and Go Lang version

Added support for the ForwardZone and upgraded Terraform and Go Lang version #225

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
env:
CGO_ENABLED: "0"
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
go: [1.17]
steps:
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go test ./...