Skip to content

DP-187 (WIP) Combine jobs #1

DP-187 (WIP) Combine jobs

DP-187 (WIP) Combine jobs #1

Workflow file for this run

#name: Test
#
#on:
# workflow_run:
# workflows: [Build]
# branches: [DP-187]
# types:
# - completed
#
#jobs:
# test:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Setup .NET
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: '8.0.x'
#
# - name: Download Docker Images
# uses: actions/download-artifact@v2
# with:
# name: docker-images
# path: docker_images/
#
# - name: Load Docker Images
# run: docker load -i docker_images/cdp-images.tar
#
# - name: Start services
# run: make up
#
# - name: Run Tests
# run: |
# dotnet test --logger trx --results-directory TestResults
#
# - name: Stop services
# run: make down