Skip to content

Fix and improve RPC management #15

Fix and improve RPC management

Fix and improve RPC management #15

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Initialize
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Clean project
run: dotnet clean
- name: Build
run: dotnet build --no-restore