feat: expose typed native error codes for V3 #50
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Restore | |
| run: dotnet restore DeltaLakeSharp.sln | |
| - name: Test Rust V3 runtime | |
| working-directory: src/DeltaLakeSharp.Server/v3 | |
| run: cargo test | |
| - name: Build native runtime | |
| working-directory: src/DeltaLakeSharp.Server/v3 | |
| run: cargo build --release | |
| - name: Build solution | |
| run: dotnet build DeltaLakeSharp.sln --configuration Release --no-restore /p:SkipRustBuild=true -m:1 | |
| - name: Build client example | |
| run: dotnet build examples\DeltaLakeSharp.Client.Examples\DeltaLakeSharp.Client.Examples.csproj --configuration Release --no-restore /p:SkipRustBuild=true | |
| - name: Run SDK non-integration tests | |
| run: dotnet test tests\DeltaLakeSharp.Tests\DeltaLakeSharp.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration" | |
| - name: Run ADBC non-integration tests | |
| run: dotnet test tests\DeltaLakeSharp.Adbc.Tests\DeltaLakeSharp.Adbc.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration" | |
| - name: Run compatibility tests | |
| run: dotnet test tests\DeltaLakeSharp.Client.Compatibility.Tests\DeltaLakeSharp.Client.Compatibility.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration" |