feat(3): Add exception-safe Try / TryAsync mapping helpers for `F…
#11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |