Fix: [BUG] StatusBarBehavior is causing Android layouts to go behind status bar and navigation bar buttons on launch #2351 #2257
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: Benchmarks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' | |
| paths-ignore: | |
| - README.md | |
| pull_request: | |
| branches: | |
| - '*' | |
| env: | |
| LATEST_NET_VERSION: '10.0.x' | |
| PathToCommunityToolkitAnalyzersBenchmarksCsproj: 'src/CommunityToolkit.Maui.Analyzers.Benchmarks/CommunityToolkit.Maui.Analyzers.Benchmarks.csproj' | |
| PathToCommunityToolkitSourceGeneratorsBenchmarksCsproj: 'src/CommunityToolkit.Maui.SourceGenerators.Benchmarks/CommunityToolkit.Maui.SourceGenerators.Benchmarks.csproj' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run_benchmarks: | |
| name: Run Benchmarks | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@main | |
| - name: Install Latest Version of .NET, v${{ env.LATEST_NET_VERSION }} | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: ${{ env.LATEST_NET_VERSION }} | |
| dotnet-quality: 'ga' | |
| - name: Install .NET MAUI Workload | |
| run: | | |
| dotnet workload install maui | |
| dotnet workload update | |
| - name: Install Tizen Workload | |
| run: | | |
| Invoke-WebRequest 'https://raw.githubusercontent.com/Samsung/Tizen.NET/main/workload/scripts/workload-install.ps1' -OutFile 'workload-install.ps1' | |
| .\workload-install.ps1 | |
| shell: pwsh | |
| - name: Display dotnet info | |
| run: dotnet --info | |
| - name: Run Analyzer Benchmarks | |
| run: dotnet run --project ${{ env.PathToCommunityToolkitAnalyzersBenchmarksCsproj }} -c Release -- -a "${{ runner.temp }}" | |
| - name: Run Source Generator Benchmarks | |
| run: dotnet run --project ${{ env.PathToCommunityToolkitSourceGeneratorsBenchmarksCsproj }} -c Release -- -a "${{ runner.temp }}" | |
| - name: Publish Benchmarks | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: Benchmarks | |
| path: | | |
| ${{ runner.temp }}/**/*.md |