Skip to content

Merge branch 'master' of https://github.com/docusign/code-examples-cs… #162

Merge branch 'master' of https://github.com/docusign/code-examples-cs…

Merge branch 'master' of https://github.com/docusign/code-examples-cs… #162

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1.1.3
- name: Restore dependencies
run: dotnet restore launcher-csharp.sln
- name: Build
run: dotnet build launcher-csharp.sln --no-restore
- name: Test
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
IMPERSONATED_USER_ID: ${{ secrets.IMPERSONATED_USER_ID }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
SIGNER_EMAIL: ${{ secrets.SIGNER_EMAIL }}
SIGNER_NAME: ${{ secrets.SIGNER_NAME }}
run: dotnet test launcher-csharp.sln --no-build --verbosity normal