mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Also update version numbers of binding Rust projects to match Regorus Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
27 lines
498 B
YAML
27 lines
498 B
YAML
name: bindings/csharp
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-dotnet@v4
|
|
|
|
- name: Build
|
|
run: dotnet build
|
|
working-directory: ./bindings/csharp
|
|
|
|
- name: Run
|
|
run: LD_LIBRARY_PATH=. dotnet run
|
|
working-directory: ./bindings/csharp
|