Skip to content

Add github repository icon #117

Add github repository icon

Add github repository icon #117

Workflow file for this run

name: Tests
on:
push:
branches:
- main
tags-ignore:
- '*'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal