Skip to content

added Sample Tests pipeline to test samples on Fabric v3 and Fabric… #5

added Sample Tests pipeline to test samples on Fabric v3 and Fabric…

added Sample Tests pipeline to test samples on Fabric v3 and Fabric… #5

Workflow file for this run

#
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run unit tests
run: make test