Skip to content

SLO chart type support #137

SLO chart type support

SLO chart type support #137

Workflow file for this run

name: build-and-test
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: "1.23"
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Caching dependency
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
~/go/bin
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Checking license files
run: make checklicense