Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Update BitcoinPool.cs #543

Update BitcoinPool.cs

Update BitcoinPool.cs #543

Workflow file for this run

name: .NET
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Build dependencies
run: sudo apt-get install -y cmake build-essential libssl-dev pkg-config libboost-all-dev libsodium-dev libzmq5
- name: Setup .NET
uses: actions/setup-dotnet@v1
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