Use 'instanceandevents' endpoint when updating process state, so that process and events are updated in a single transaction #2917
Workflow file for this run
This file contains 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: Build and Test on windows, macos and ubuntu | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
analyze: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
name: Run dotnet build and test | |
runs-on: ${{ matrix.os}} | |
env: | |
DOTNET_HOSTBUILDER__RELOADCONFIGONCHANGE: false | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Build | |
run: | | |
dotnet build AppLibDotnet.sln -v m | |
- name: Test | |
run: | | |
dotnet test AppLibDotnet.sln -v m --no-restore --no-build |