Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/.github/workflows/operator-scorecard.yaml

27 lines
529 B

name: operator scorecard
on:
push:
paths:
- 'operator/**'
branches: [ main ]
pull_request:
paths:
- 'operator/**'
jobs:
build:
name: scorecard
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: ./operator/go.mod
- uses: engineerd/setup-kind@v0.5.0
with:
version: "v0.17.0"
- name: Run scorecard
run: make scorecard
working-directory: ./operator