Skip to content

Fixing RTB Tests Copied from OpenRTB Repo #42

Fixing RTB Tests Copied from OpenRTB Repo

Fixing RTB Tests Copied from OpenRTB Repo #42

Workflow file for this run

name: nimbus-unity
on:
push:
branches:
- main
paths:
- 'com.adsbynimbus.nimbus/Runtime/Plugins/**'
- '.github/workflows/rtbworkflow*'
pull_request:
paths:
- 'com.adsbynimbus.nimbus/Runtime/Plugins/**'
- '.github/workflows/rtbworkflow*'
jobs:
tests:
name: Running CSharp Tests
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
- name: Install dependencies
run: nuget restore
working-directory: com.adsbynimbus.nimbus/Runtime/Plugins
- name: Run Test
run: dotnet test --no-restore
working-directory: com.adsbynimbus.nimbus/Runtime/Plugins