Merge pull request #244 from DentallApp/patch-19 #137
This file contains 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
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/Plugin.ChatBot.IntegrationTests.csproj -c Release |