Skip to content

fix!: Avoid throwing an exception when the length of the params list is zero #51

fix!: Avoid throwing an exception when the length of the params list is zero

fix!: Avoid throwing an exception when the length of the params list is zero #51

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