Skip to content

Refactor ZKPTests to use a consistent HMAC key for proof provider ini… #2

Refactor ZKPTests to use a consistent HMAC key for proof provider ini…

Refactor ZKPTests to use a consistent HMAC key for proof provider ini… #2

Workflow file for this run

name: .NET Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
- name: Restore dependencies
run: dotnet restore
- name: Build the project
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal