Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

- Fix "minerEffort" calculation #300

- Fix "minerEffort" calculation

- Fix "minerEffort" calculation #300

Workflow file for this run

name: .NET
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Build dependencies
run: sudo apt-get install -y cmake cmake ninja-build build-essential libssl-dev pkg-config libboost-all-dev libsodium-dev libzmq5 libgmp-dev
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore src
- name: Build
run: dotnet build --no-restore src
- name: Test
run: dotnet test --logger:"console;verbosity=detailed" --no-build --verbosity normal src