Skip to content

Run spiffe-helper to allow client registration to use SVID #61

Run spiffe-helper to allow client registration to use SVID

Run spiffe-helper to allow client registration to use SVID #61

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- "release-*"
jobs:
ci-checks:
runs-on: ubuntu-latest
name: CI Checks
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Lint
run: find . -type f -name 'go.mod' -execdir go fmt ./... \;
- name: Static analysis
run: find . -type f -name 'go.mod' -execdir go vet ./... \;
- name: Build
run: find . -type f -name 'go.mod' -execdir go build -v ./... \;
# TODO - make sure at least bare bone tests work
# - name: Test
# run: find . -type f -name 'go.mod' -execdir go test -v ./... \;