Skip to content

feat: report runtime properties #99

feat: report runtime properties

feat: report runtime properties #99

Workflow file for this run

name: Codegen CI
on:
push:
branches:
- main
paths:
- "codegen/**"
- ".github/workflows/codegen.yaml"
pull_request:
branches:
- main
paths:
- "codegen/**"
- ".github/workflows/codegen.yaml"
env:
GOLANGCI_LINT_VERSION: v2.6.2
permissions:
contents: read
defaults:
run:
working-directory: ./codegen
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: './codegen/go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
working-directory: ./codegen
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: './codegen/go.mod'
- name: Test
run: make test