Skip to content

Added new typesafe helper in Result object to get metadata 'TValue? G… #10

Added new typesafe helper in Result object to get metadata 'TValue? G…

Added new typesafe helper in Result object to get metadata 'TValue? G… #10

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
DOTNET_VERSION: '10.0.x'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore ResultR.slnx
working-directory: src
- name: Build
run: dotnet build ResultR.slnx --configuration Release --no-restore
working-directory: src
- name: Test
run: dotnet test ResultR.slnx --configuration Release --no-build --verbosity normal
working-directory: src