Skip to content

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

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

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

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@v2
with:
dotnet-version: 6.0.x
- name: setup-msbuild
uses: microsoft/[email protected]
- 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