Skip to content

Add interim StepProgress event to IExecutionObserver (#32) #3

Add interim StepProgress event to IExecutionObserver (#32)

Add interim StepProgress event to IExecutionObserver (#32) #3

Workflow file for this run

name: tests
# Build and run the full Bobcat test suite on every push to any branch.
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -c Release --verbosity normal