Skip to content

Cleanup.

Cleanup. #12

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x.x'
- name: Install dependencies
run: dotnet restore Mnemonic.sln
- name: Build
run: dotnet build Mnemonic.sln --configuration Release
- name: Test
run: dotnet test "./tests/Tests.sln"