Skip to content

docs: Add samples on how to integrate YeSql.Net with plug-ins #45

docs: Add samples on how to integrate YeSql.Net with plug-ins

docs: Add samples on how to integrate YeSql.Net with plug-ins #45

Workflow file for this run

name: YeSQL.Net
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
dotnet-version: ['8.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Test
run: |
dotnet test ./tests/YeSql.Net.Tests.csproj
dotnet test ./samples/Example.AspNetCore.Tests/Example.AspNetCore.Tests.csproj
dotnet build ./samples/Example.PluginApp/Plugins/EmployeePlugin/PluginApp.EmployeePlugin.csproj
dotnet build ./samples/Example.PluginApp/Plugins/UserPlugin/PluginApp.UserPlugin.csproj
dotnet build ./samples/Example.PluginApp/Plugins/HelloPlugin/PluginApp.HelloPlugin.csproj
dotnet test ./samples/Example.PluginApp/Test/PluginApp.Host.Tests.csproj