Skip to content

cfg: added check for key prefixes; #1518

cfg: added check for key prefixes;

cfg: added check for key prefixes; #1518

Workflow file for this run

name: "Update markdown files"
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
update_markdown_documentation:
runs-on: ubuntu-latest
steps:
- name: checkout on the lastest commit
uses: actions/checkout@v3
with:
repository: ''
ref: ''
- name: setup golang
uses: actions/setup-go@v3
with:
stable: 'false'
go-version: '1.18.0'
- name: "running embedmd"
run: |
go install github.com/campoy/embedmd@latest
embedmd -w $(find . | grep "\.md")
- name: "running structmd"
run: |
go install github.com/justtrackio/structmd@latest
structmd $(find . | grep "\.md")
- name: "Ensure embedmd & structmd found no changes"
run: |
git diff --exit-code