Pull in SelectAwait in prep for .NET 10 migration (not supported #3421
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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Graphviz # required for reporting | |
| run: sudo apt install -y graphviz | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: src | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| working-directory: src | |
| - name: Test | |
| run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | |
| working-directory: src | |
| - name: Coverage | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |