feat(client): add debug struct logging (#304) #302
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: CLI and API partials checker | |
on: | |
push: | |
paths: | |
- ".github/workflows/docs_cli_and_api_partials_checker.yml" | |
- "client/cmd/**" | |
- "server/**" | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Partials checker | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: server/go.mod | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up git config | |
run: task ci:setup:git-config | |
- name: Regen partials | |
run: task docs:gen |