fix: rename codeql.yml to codeql-analysis.yml to bypass disabled state #868
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: Continuous Integration | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**/*.md' | |
| - '**/*.gitignore' | |
| - '**/*.gitattributes' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| DOTNET_NOLOGO: true | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| name: Build | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Setup .NET 9 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.x | |
| include-prerelease: true | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'microsoft' | |
| java-version: '11' | |
| - name: Install MAUI Workloads | |
| run: | | |
| dotnet workload install android --ignore-failed-sources | |
| dotnet workload install maui-android --ignore-failed-sources | |
| dotnet workload install maui-tizen --ignore-failed-sources | |
| dotnet workload install maui-ios | |
| dotnet workload install maccatalyst | |
| - name: Restore Dependencies | |
| run: dotnet restore Trimble.Modus.Components.sln | |
| - name: Build MAUI Android | |
| run: dotnet build Trimble.Modus.Components.sln -f net9.0-android -c Release --no-restore |