Skip to content

Fixing exception message in CandidPrimitive.cs #110

Fixing exception message in CandidPrimitive.cs

Fixing exception message in CandidPrimitive.cs #110

Workflow file for this run

name: .NET
on:
push:
branches: [main, versions/*]
pull_request:
branches: [main, versions/*]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Publish Agent Dlls
run: dotnet publish ./src/WebSockets --no-restore -c Release -o ./publish-agent
- name: Upload Agent Binaries Artifact
uses: actions/upload-artifact@v2
with:
name: binaries-agent
path: publish-agent