Skip to content

Merge pull request #33 from JasperFx/feature/32-step-progress-event #4

Merge pull request #33 from JasperFx/feature/32-step-progress-event

Merge pull request #33 from JasperFx/feature/32-step-progress-event #4

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