This repository was archived by the owner on Jun 18, 2026. It is now read-only.
Add CleanroomEnvironmentDriftAdvisor: per-zone ISO 14644 drift watcher #689
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: "CodeQL" | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| schedule: | |
| # Run weekly on Mondays at 06:00 UTC | |
| - cron: '0 6 * * 1' | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: ${{ matrix.language == 'csharp' && 'windows-latest' || 'ubuntu-latest' }} | |
| timeout-minutes: 360 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: javascript-typescript | |
| build-mode: none | |
| - language: csharp | |
| build-mode: manual | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| # Use extended queries for deeper analysis | |
| queries: security-extended | |
| - name: Setup MSBuild (C# only) | |
| if: matrix.language == 'csharp' | |
| uses: microsoft/setup-msbuild@v3 | |
| - name: Setup NuGet (C# only) | |
| if: matrix.language == 'csharp' | |
| uses: NuGet/setup-nuget@v4 | |
| - name: Restore & Build (C# only) | |
| if: matrix.language == 'csharp' | |
| run: | | |
| nuget restore BioBotsTool.sln | |
| msbuild BioBotsTool.sln /p:Configuration=Release /p:Platform="Any CPU" /m /verbosity:minimal | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:${{ matrix.language }}" |