Fix links to data sources in bastionzero_db_target
resource docs
#489
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: Unit Tests | |
# Runs unit tests for pull requests and pushes to master. | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
unit: | |
strategy: | |
matrix: | |
go-version: [1.20.x, 1.21.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build | |
run: go build -v ./... | |
- name: Vet | |
run: make vet | |
- name: Test | |
run: make test |