правки
Some checks failed
Unit tests / test (push) Failing after 1m6s

This commit is contained in:
Оля Бизюкова 2024-12-17 14:05:14 +05:00
parent bb00faad02
commit 39ced21343
2 changed files with 81 additions and 44 deletions

View File

@ -1,49 +1,49 @@
name: PostgreSQL Service Example # name: PostgreSQL Service Example
on: push # on: push
jobs: # jobs:
# Label of the runner job # # Label of the runner job
runner-job: # runner-job:
# You must use a Linux environment when using service containers or container jobs # # You must use a Linux environment when using service containers or container jobs
runs-on: ubuntu-latest # runs-on: ubuntu-latest
# Service containers to run with `runner-job` # # Service containers to run with `runner-job`
services: # services:
# Label used to access the service container # # Label used to access the service container
postgres: # postgres:
# Docker Hub image # # Docker Hub image
image: postgres # image: postgres
# Provide the password for postgres # # Provide the password for postgres
env: # env:
POSTGRES_PASSWORD: postgres # POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started # # Set health checks to wait until postgres has started
options: >- # options: >-
--health-cmd pg_isready # --health-cmd pg_isready
--health-interval 10s # --health-interval 10s
--health-timeout 5s # --health-timeout 5s
--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
- 5442: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
- name: Check out repository code # - name: Check out repository code
uses: actions/checkout@v4 # uses: actions/checkout@v4
# Performs a clean installation of all dependencies in the `package.json` file # # Performs a clean installation of all dependencies in the `package.json` file
# For more information, see https://docs.npmjs.com/cli/ci.html # # For more information, see https://docs.npmjs.com/cli/ci.html
- name: Install dependencies # - name: Install dependencies
run: npm ci # run: npm ci
- name: Connect to PostgreSQL # - name: Connect to PostgreSQL
# Runs a script that creates a PostgreSQL table, populates # # Runs a script that creates a PostgreSQL table, populates
# the table with data, and then retrieves the data # # the table with data, and then retrieves the data
run: node client.js # run: node client.js
# Environment variables used by the `client.js` script to create # # Environment variables used by the `client.js` script to create
# a new PostgreSQL table. # # a new PostgreSQL table.
env: # env:
# The hostname used to communicate with the PostgreSQL service container # # The hostname used to communicate with the PostgreSQL service container
POSTGRES_HOST: localhost # POSTGRES_HOST: localhost
# The default PostgreSQL port # # The default PostgreSQL port
POSTGRES_PORT: 5442 # POSTGRES_PORT: 5442

View File

@ -0,0 +1,37 @@
name: Unit tests
run-name: ${{ gitea.actor }} is testing
on: push
jobs:
test:
runs-on: ubuntu-latest
# Service containers to run with `runner-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5442:5432
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: Add gitea as nuget source
run: dotnet test DD.Persistence.IntegrationTests