Skip to content

Merge pull request #84 from kate-goldenring/scaffold-with-variables #158

Merge pull request #84 from kate-goldenring/scaffold-with-variables

Merge pull request #84 from kate-goldenring/scaffold-with-variables #158

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GOPRIVATE: "github.com/spinkube/spin-operator"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Build
run: go build -o spin-plugin-kube main.go
- name: Run tests
run: go test ./...