Skip to content

Update to FunctionalDDD version 1.1.0-alpha.28 (#22) #40

Update to FunctionalDDD version 1.1.0-alpha.28 (#22)

Update to FunctionalDDD version 1.1.0-alpha.28 (#22) #40

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches: [ main, release/v** ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # depth is needed for nbgv
- uses: dotnet/nbgv@master
with:
setAllVars: true
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -l "console;verbosity=normal" -c Release --filter "Category!=ComponentTests"