Skip to content

Move test lib versions to Directory.Packages.props (again) #3

Move test lib versions to Directory.Packages.props (again)

Move test lib versions to Directory.Packages.props (again) #3

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal