Skip to content

chore(.github): bump golangci-lint-action to v8, version to v2.5.0, address lint errs #220

chore(.github): bump golangci-lint-action to v8, version to v2.5.0, address lint errs

chore(.github): bump golangci-lint-action to v8, version to v2.5.0, address lint errs #220

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@v5
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Build
run: go build -o spin-plugin-kube main.go
- name: Run tests
run: go test ./...