chore: update CI/CD workflows and configuration

- 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.
This commit is contained in:
0x524a
2025-12-02 00:53:20 -05:00
parent 0551d28f61
commit 00e2e0d46f
12 changed files with 798 additions and 133 deletions
+34
View File
@@ -0,0 +1,34 @@
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