fix: update csbindgen to 1.19.3 (#127) #618
Workflow file for this run
This file contains 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: Test C# bindings | |
# on: | |
# push: | |
# branches: | |
# - master | |
# pull_request: | |
# branches: | |
# - master | |
# workflow_dispatch: | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
# cancel-in-progress: true | |
# jobs: | |
# build-and-test: | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ubuntu-latest, macos-latest, windows-latest] | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Install Rust | |
# uses: dtolnay/rust-toolchain@master | |
# with: | |
# toolchain: stable | |
# - name: Run compile script | |
# run: ./scripts/compile.sh csharp | |
# shell: bash | |
# - name: Set up .NET | |
# uses: actions/setup-dotnet@v3 | |
# with: | |
# dotnet-version: '8.0.x' | |
# - name: Restore .NET dependencies | |
# run: dotnet restore | |
# working-directory: bindings/csharp/csharp_code | |
# - name: Build .NET project | |
# run: dotnet build --no-restore | |
# working-directory: bindings/csharp/csharp_code | |
# - name: Run .NET tests | |
# run: dotnet test --no-build --verbosity normal | |
# working-directory: bindings/csharp/csharp_code |