Skip to content

Sliding timeout and fix jobs not enqueued when requeued while processing (#380) #132

Sliding timeout and fix jobs not enqueued when requeued while processing (#380)

Sliding timeout and fix jobs not enqueued when requeued while processing (#380) #132

Workflow file for this run

name: Build
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore ./src
- name: Build
run: dotnet build ./src -c Release --no-restore
- name: Test
run: dotnet test ./src -c Release --no-build --verbosity normal