Skip to content

Merge pull request #9 from jellyhive/add_account_maxlength_check #28

Merge pull request #9 from jellyhive/add_account_maxlength_check

Merge pull request #9 from jellyhive/add_account_maxlength_check #28

Workflow file for this run

name: Build & Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: src