Skip to content

PM-278 Create test.yml #350

PM-278 Create test.yml

PM-278 Create test.yml #350

Workflow file for this run

# Copyright (c) 2018-2021 Zededa, Inc.
# SPDX-License-Identifier: Apache-2.0
name: Go
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build
run: go build -v ./...
# - name: Test
# run: TF_ACC=1 go test -v ./...