Skip to content

chore: add warning to issue templates #1334

chore: add warning to issue templates

chore: add warning to issue templates #1334

Workflow file for this run

name: Assess code quality
on: push
jobs:
assess-code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Check conventional commit
uses: cocogitto/cocogitto-action@v3
id: conventional_commit_check
with:
check-latest-tag-only: true
- name: Check license header
uses: viperproject/check-license-header@v2
with:
path: ./
config: .github/license-check/config.json
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run Go Linter
uses: golangci/golangci-lint-action@v6
with:
version: v1.58.2
- name: Lint Markdown docs
uses: DavidAnson/markdownlint-cli2-action@v16
with:
globs: |
*.md
docs/*.md
- name: Check auto generated files
run: make check-generate