Skip to content

Migrate application and API to use ErrorOr for error handling #7

Migrate application and API to use ErrorOr for error handling

Migrate application and API to use ErrorOr for error handling #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore Voltiq.slnx
- name: Build
run: dotnet build Voltiq.slnx --no-restore --configuration Release
- name: Run tests
run: dotnet test Voltiq.slnx --no-build --configuration Release --verbosity normal