From 232db92d6ca965527f4c4ad46b8ce70b3d7824e9 Mon Sep 17 00:00:00 2001 From: Olga Nemt Date: Wed, 18 Dec 2024 12:21:28 +0500 Subject: [PATCH] - --- .gitea/workflows/test.yaml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 9b1ab66..76da851 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -7,23 +7,23 @@ jobs: runs-on: ubuntu-latest container: catthehacker/ubuntu:act-latest steps: - - name: Checkout Codebase - uses: actions/checkout@v4 + # - name: Checkout Codebase + # uses: actions/checkout@v4 - - name: Setup dotnet - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x + # - name: Setup dotnet + # uses: actions/setup-dotnet@v4 + # with: + # dotnet-version: 8.0.x - - name: Check out repository code - uses: actions/checkout@v4 + # - name: Check out repository code + # uses: actions/checkout@v4 - name: Configure and install postgres run: | apt update - apt install -y postgresql + apt install -y postgresql:latest service postgresql start - sudo -u postgres -s psql -U postgres -d postgres -c "alter user postgres with password 'postgres';" + sudo -u postgres -s psql -U postgres -d postgres -c "initdb --locale=ru_RU; alter user postgres with password 'postgres';" # - uses: pdm-project/setup-pdm@v3 @@ -37,11 +37,11 @@ jobs: - - name: Run integration tests - env: - DB_HOST: localhost - DB_USER: postgres - DB_PASSWORD: postgres + # - name: Run integration tests + # env: + # DB_HOST: localhost + # DB_USER: postgres + # DB_PASSWORD: postgres - run: | - dotnet test DD.Persistence.IntegrationTests \ No newline at end of file + # run: | + # dotnet test DD.Persistence.IntegrationTests \ No newline at end of file