Skip to content

PocketIC integration #127

PocketIC integration

PocketIC integration #127

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: 8.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@v4
with:
name: binaries-agent
path: publish-agent