Skip to content

Fix type of Level argument; improvements to RT and File trace stoppin… #8

Fix type of Level argument; improvements to RT and File trace stoppin…

Fix type of Level argument; improvements to RT and File trace stoppin… #8

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
etwlib_Unit_Tests:
runs-on: windows-latest
steps:
# setup .NET using setup-dotnet action
- name: Setup .NET
uses: actions/[email protected]
- name: checkout code
uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Setup NuGet
uses: nuget/setup-nuget@v1
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore nuget packages
run: nuget restore etwlib.sln
- name: Build Solution
run: |
msbuild.exe etwlib.sln /nologo /nr:false /p:platform="Any CPU" /p:configuration="Release"
- name: Test
run: sudo dotnet test --no-restore --verbosity normal