Skip to content

Bump golangci/golangci-lint-action from 6 to 8 #208

Bump golangci/golangci-lint-action from 6 to 8

Bump golangci/golangci-lint-action from 6 to 8 #208

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 ./...