Allow one to set up feature checks as well #154
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: Build | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Configure Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.17.8" | |
- name: Build Terraform providers | |
run: | | |
GOOS=darwin go build ./providers/terraform-provider-anaml | |
GOOS=darwin go build ./providers/terraform-provider-anaml-operations |