Skip to content

feat: Represents a large integer (BigInteger) wrapper that provides.… #1

feat: Represents a large integer (BigInteger) wrapper that provides.…

feat: Represents a large integer (BigInteger) wrapper that provides.… #1

Workflow file for this run

name: .NET CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: Restore dependencies
run: dotnet restore Cardity.sln
- name: Build
run: dotnet build Cardity.sln --configuration Release --no-restore
- name: Run Tests
run: dotnet test Cardity.sln --no-build --verbosity normal