Skip to content

Add version to Directory.Build.props #28

Add version to Directory.Build.props

Add version to Directory.Build.props #28

Workflow file for this run

name: Build and Test ConcurrentPriorityQueue
on:
push:
branches: [develop]
pull_request:
branches: [develop]
concurrency:
group: ${{github.workflow}}-${{github.event.pull_request.number || github.ref}}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: |
8.x
6.x
2.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal