Fix nullable date deserialization for OpenAPI v3 schemas #352
Workflow file for this run
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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET 10.0 SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Cache NuGet packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.nuget/packages | |
| ~/.local/share/NuGet | |
| %LOCALAPPDATA%\NuGet\v3-cache | |
| key: ${{ runner.os }}-nuget-${{ hashFiles('**/paket.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-nuget- | |
| - name: Cache .paket directory | |
| uses: actions/cache@v4 | |
| with: | |
| path: .paket | |
| key: ${{ runner.os }}-paket-${{ hashFiles('**/paket.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-paket- | |
| - name: Install local tools | |
| run: dotnet tool restore | |
| - name: Paket Restore | |
| run: dotnet paket restore | |
| - name: Build and Test | |
| run: dotnet fsi build.fsx |