Skip to content

Create main.yml

Create main.yml #1

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- run: dotnet restore
working-directory: Tests
- run: dotnet test --no-restore --verbosity normal
working-directory: Tests