Adding test to validate the Csharp binding. #4
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
| # Binding CI - Simple Template | |
| name: CI | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| publish-artifacts: | |
| description: 'Publish artifacts' | |
| required: false | |
| type: boolean | |
| default: false | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| ci: | |
| uses: EvergineTeam/evergine-standards/.github/workflows/binding-common-ci.yml@v2 | |
| with: | |
| generator-project: "JoltPhysicsGen/JoltPhysicsGen.csproj" | |
| generator-name: "JoltPhysicsGen" | |
| binding-project: "Evergine.Bindings.JoltPhysics/Evergine.Bindings.JoltPhysics.csproj" | |
| target-framework: "net8.0" | |
| dotnet-version: "8.x" | |
| runtime-identifier: "linux-x64" | |
| build-configuration: "Release" | |
| nuget-artifacts: ${{ inputs.publish-artifacts || false }} | |
| revision: ${{ github.run_number }} |