Skip to content

feat(engine): propagate InitiatedByUserId through ranking and online strategies #262

feat(engine): propagate InitiatedByUserId through ranking and online strategies

feat(engine): propagate InitiatedByUserId through ranking and online strategies #262

Workflow file for this run

name: Chronos.Service.PullRequest
on:
pull_request:
branches: ["main", "develop"]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Chronos.sln
- name: Build solution
run: dotnet build Chronos.sln --configuration Release --no-restore
- name: Run tests
run: dotnet test Chronos.sln --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx"
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: "**/test-results.trx"