Skip to content

Update and rename LICENSE to LICENSE.md #27

Update and rename LICENSE to LICENSE.md

Update and rename LICENSE to LICENSE.md #27

Workflow file for this run

name: Test .NET
on:
push:
branches:
- '*'
pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore ./src/
- name: Build
run: dotnet build ./src/ --no-restore
- name: Test
run: dotnet test ./src/ --no-build --verbosity normal