Remove checks that break Terraform RPC Flow #72
Workflow file for this run
This file contains hidden or 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: Provider Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-and-test: | |
name: | |
runs-on: ubuntu-latest | |
env: | |
go_version: '1.23' | |
steps: | |
- name: Checkout Provider | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go ${{ env.go_version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
- name: Install Go dependencies | |
run: go get . | |
- name: Build the Provider | |
run: go build -v ./... | |
- name: Run Provider Unit Tests | |
run: make test | |
# - name: Run unit tests with coverage | |
# run: make testcov | |
# - name: Upload code coverage report from unit tests | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: coverage-report | |
# path: unit-testing.cov |