Skip to content

Fork issue 28

Fork issue 28 #22

Workflow file for this run

name: executar-testes
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies Motor
run: dotnet restore
working-directory: 'src/'
- name: Build
run: dotnet build --no-restore
working-directory: 'src/'
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: 'src/'