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

Prepare for Messerli-Prefix: #86

Prepare for Messerli-Prefix:

Prepare for Messerli-Prefix: #86

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run Tests
run: dotnet test --no-restore --verbosity normal