Improve test Progress_bar_and_always_on_top_toggle #167
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: CI | |
| on: [push, pull_request] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
| jobs: | |
| # linux: | |
| # runs-on: ubuntu-latest | |
| # timeout-minutes: 10 | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Setup dotnet | |
| # uses: actions/setup-dotnet@v4 | |
| # with: | |
| # dotnet-version: | | |
| # 6.0.x | |
| # 8.0.x | |
| # 10.0.x | |
| # - name: Build | |
| # run: ./build.sh | |
| windows: | |
| runs-on: windows-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 6.0.x | |
| 8.0.x | |
| 10.0.x | |
| - name: Build | |
| run: | | |
| if ($env:GITHUB_REF -eq "refs/heads/main") { | |
| .\build.ps1 -Target Publish | |
| } elseif ($env:GITHUB_REF -eq "refs/heads/develop") { | |
| .\build.ps1 -Target PrePublish | |
| } else { | |
| .\build.ps1 | |
| } |