Skip to content

Commit

Permalink
Add Workflow for RTB
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansligh-nimbus committed Sep 17, 2024
1 parent d693596 commit 729ee02
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/rtbworkflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CSharp
on:
push:
branches:
- main
paths:
- 'com.adsbynimbus.nimbus/Runtime/Plugins/RTB/**'
- '.github/workflows/rtbworkflow*'
pull_request:
paths:
- 'com.adsbynimbus.nimbus/Runtime/Plugins/RTB/**'
- '.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

- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Install dependencies
run: nuget restore
working-directory: com.adsbynimbus.nimbus/Runtime/Plugins/RTB

- name: Run Test
run: dotnet test --no-restore
working-directory: com.adsbynimbus.nimbus/Runtime/Plugins/RTB

0 comments on commit 729ee02

Please sign in to comment.