Skip to content

add sample pod spec for NF #210

add sample pod spec for NF

add sample pod spec for NF #210

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
subproject: [ipu-plugin] # Add more as needed
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: 1.21
- name: Run make test in subproject
run: |
cd ${{ matrix.subproject }}
make test