Skip to content

RavenDB-25153 TaskCompletionSource rule #2

RavenDB-25153 TaskCompletionSource rule

RavenDB-25153 TaskCompletionSource rule #2

Workflow file for this run

name: .NET
on:
push:
branches:
- main
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build