Skip to content

Merge pull request #8 from aka-nse/release/v1.1.0 #26

Merge pull request #8 from aka-nse/release/v1.1.0

Merge pull request #8 from aka-nse/release/v1.1.0 #26

Workflow file for this run

name: .NET Core CI
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build-and-test:
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore PathBench.slnx
- name: Build solution
run: dotnet build PathBench.slnx --no-restore
- name: Run tests
run: dotnet test PathBench.slnx --no-build --verbosity normal