Adding more context to error messaging for candid mapping (#143) #153
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: .NET | |
| on: | |
| push: | |
| branches: [main, versions/*] | |
| pull_request: | |
| branches: [main, versions/*] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --no-restore | |
| - name: Test | |
| run: dotnet test --no-build --verbosity normal | |
| - name: Publish Agent Dlls | |
| run: dotnet publish ./src/WebSockets --no-restore -c Release -o ./publish-agent | |
| - name: Upload Agent Binaries Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: binaries-agent | |
| path: publish-agent |