Update README.md #5
This file contains hidden or 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: Code Quality | |
| on: | |
| push: | |
| branches: [ master, develop ] | |
| pull_request: | |
| branches: [ master, develop ] | |
| env: | |
| DOTNET_VERSION: '8.0.x' | |
| jobs: | |
| code-analysis: | |
| name: Code Analysis | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Restore dependencies | |
| run: dotnet restore PostProcessor.sln | |
| - name: Build | |
| run: dotnet build PostProcessor.sln -c Release --no-restore | |
| - name: Run dotnet format (check) | |
| run: dotnet format PostProcessor.sln --verify-no-changes --no-restore | |
| continue-on-error: true | |
| - name: Run Roslynator analyzer | |
| run: dotnet build PostProcessor.sln -c Release -p:EnforceCodeStyleInBuild=true | |
| continue-on-error: true | |
| documentation-check: | |
| name: Documentation Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check markdown links | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-quiet-mode: 'yes' | |
| config-file: '.github/link-check-config.json' | |
| continue-on-error: true | |
| - name: Validate documentation structure | |
| run: | | |
| echo "Checking documentation files..." | |
| test -f README.md && echo "✓ README.md exists" | |
| test -f docs/QUICKSTART.md && echo "✓ QUICKSTART.md exists" | |
| test -f docs/ARCHITECTURE.md && echo "✓ ARCHITECTURE.md exists" | |
| test -f docs/PYTHON_MACROS_GUIDE.md && echo "✓ PYTHON_MACROS_GUIDE.md exists" | |
| echo "All documentation files present!" |