Reworked the message handling to be scope aware in Azure Functions as… #27
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 Build | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build-core: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 7.0.x | |
| - name: Restore | |
| working-directory: dotNet | |
| run: dotnet restore TaskLogging.sln | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| - name: Build | |
| working-directory: dotNet | |
| run: dotnet build --no-restore -c Release TaskLogging.sln | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 |