Skip to content

new v3.0.0 release

new v3.0.0 release #3

Workflow file for this run

name: Documentation Check
on:
push:
branches: [main, master, develop]
paths:
- '*.md'
- '.github/workflows/docs.yml'
pull_request:
paths:
- '*.md'
- '.github/workflows/docs.yml'
workflow_dispatch:
jobs:
docs-check:
name: Documentation Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Validate documentation
run: |
echo "Checking documentation files..."
test -f README.md
test -f LICENSE
test -f .github/CONTRIBUTING.md
test -f .github/CODE_OF_CONDUCT.md
test -f .github/SECURITY.md
echo "All documentation files present"
- name: Check for broken links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/markdown-link-check.json'
continue-on-error: true