Skip to content

test: Specify the culture for bot testing #14

test: Specify the culture for bot testing

test: Specify the culture for bot testing #14

Workflow file for this run

name: DentallApp.Backend
on:
push:
branches:
- dev
pull_request:
branches:
- dev
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/UnitTests/DentallApp.UnitTests.csproj -c Release
dotnet test ./tests/ChatBot/DentallApp.IntegrationTests.ChatBot.csproj -c Release