fix(flight-data): scale bearing vectors with map #128
Workflow file for this run
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: Avalonia CodeQL | |
| on: | |
| push: | |
| branches: [master, 'port/**', 'cleanup/**'] | |
| pull_request: | |
| branches: [master] | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: avalonia-codeql-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| env: | |
| # Overlay databases require no-build extraction; this workflow deliberately traces the full solution. | |
| CODEQL_OVERLAY_DATABASE_MODE: 'none' | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - uses: github/codeql-action/init@v4 | |
| with: | |
| languages: csharp | |
| build-mode: manual | |
| config-file: ./.github/codeql/codeql-config.yml | |
| - name: Trace complete application build | |
| run: dotnet build MissionPlanner.slnx -c Release -m:1 --nologo | |
| - uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: /language:csharp |