00e2e0d46f
- Enhanced .golangci.yml with additional linters and settings for improved code quality checks. - Updated CI workflow to include multiple branches for pull requests and improved caching strategies. - Added new workflows for documentation checks, dependency reviews, and security scans. - Refined coverage analysis workflow to provide detailed reports and comments on pull requests. - Removed outdated test workflow and consolidated testing strategies into extended tests. - Improved release workflow with better version handling and artifact management.
35 lines
651 B
YAML
35 lines
651 B
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, main ]
|
|
paths:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
docs-check:
|
|
name: Documentation Check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check for broken links
|
|
uses: peter-evans/link-checker@v1
|
|
with:
|
|
args: -v -r -d docs/
|
|
continue-on-error: true
|
|
|
|
- name: Validate markdown
|
|
uses: DavidAnson/markdownlint-cli2-action@v16
|
|
with:
|
|
globs: 'docs/**/*.md'
|
|
continue-on-error: true
|
|
|