Skip to content

fix: always use fully-qualified NDC object-type names (no silent field drop) #144

fix: always use fully-qualified NDC object-type names (no silent field drop)

fix: always use fully-qualified NDC object-type names (no silent field drop) #144

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test
on: pull_request
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go environment
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: ./go.mod
- name: Build
run: go build -v ./...
- name: Run Unit Tests
run: make unit-test