Skip to content

feat(3): Add exception-safe Try / TryAsync mapping helpers for `F… #11

feat(3): Add exception-safe Try / TryAsync mapping helpers for `F…

feat(3): Add exception-safe Try / TryAsync mapping helpers for `F… #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore local tools
run: dotnet tool restore
- name: Check formatting
run: dotnet csharpier check .
- name: Restore
run: dotnet restore fail-or.slnx
- name: Build
run: dotnet build fail-or.slnx --configuration Release --no-restore
- name: Test
run: dotnet test --solution fail-or.slnx --configuration Release --no-build