Skip to content

Merge branch 'master' of https://github.com/edenalencar/Identificacoes #9

Merge branch 'master' of https://github.com/edenalencar/Identificacoes

Merge branch 'master' of https://github.com/edenalencar/Identificacoes #9

name: .NET 6 WinUI 3 CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Add NuGet package source
run: |
nuget sources Add -Name "CommunityToolkit-Labs" -Source "https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal