-
Some checks failed
Unit tests / test (push) Failing after 55s

This commit is contained in:
Оля Бизюкова 2024-12-17 18:21:17 +05:00
parent ecd8b0020e
commit 75622a0354

View File

@ -2,13 +2,6 @@ name: Unit tests
run-name: ${{ gitea.actor }} is testing run-name: ${{ gitea.actor }} is testing
on: push on: push
env:
registry: my_registry_name
# Not sure these are actually being passed down to rails, set them as the default in database.yml
DB_HOST: localhost
DB_USERNAME: postgres
DB_PASSWORD: postgres
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -42,4 +35,7 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Run integration tests - name: Run integration tests
env:
POSTGRES_HOST: postgres
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
run: dotnet test DD.Persistence.IntegrationTests run: dotnet test DD.Persistence.IntegrationTests