feat: add the MultidappClaimer as an experimental feature for sunodo #1436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |