Skip to content

v0.7.1

v0.7.1 #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Show dotnet info
run: dotnet --info
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj', '**/Directory.Packages.props', '**/global.json', '**/nuget.config') }}
restore-keys: |
nuget-${{ runner.os }}-
- name: Restore
run: dotnet restore --nologo
- name: Build (Release)
run: dotnet build --configuration Release --nologo -warnaserror
- name: Test (Release)
run: dotnet test --configuration Release --nologo --no-build