Skip to content

Merge pull request #1224 from ksamoray/null_client #6

Merge pull request #1224 from ksamoray/null_client

Merge pull request #1224 from ksamoray/null_client #6

Workflow file for this run

name: golangci-ut
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
golangci:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
- uses: actions/checkout@v4
- name: Install dependencies
run: |
go get .
go mod tidy
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./nsxt/metadata/...