persistence/.gitea/workflows/test.yaml
Оля Бизюкова dfe3728a93
Some checks failed
Unit tests / test (push) Failing after 1m12s
Пример запуска интеграционных тестов
2024-12-17 13:01:03 +05:00

18 lines
478 B
YAML

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