feature/#524-pipline #15

Merged
on.nemtina merged 85 commits from feature/#524-pipline into master 2024-12-23 16:39:46 +05:00
2 changed files with 1 additions and 19 deletions
Showing only changes of commit 66b69e03ef - Show all commits

View File

@ -24,7 +24,7 @@ jobs:
--health-retries 5 --health-retries 5
ports: ports:
# Maps tcp port 5432 on service container to the host # Maps tcp port 5432 on service container to the host
- 5433:5432 - 5442:5432
steps: steps:
# Downloads a copy of the code in your repository before running CI tests # Downloads a copy of the code in your repository before running CI tests

View File

@ -1,18 +0,0 @@
name: Unit tests
run-name: ${{ gitea.actor }} is testing
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup dotnet
if: ${{ steps.cache-dotnet.outputs.cache-hit != 'true' }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Check out repository code
uses: actions/checkout@v4
- name: Run integration tests
run: dotnet test DD.Persistence.IntegrationTests