Skip to content

Update component create extension #314

Update component create extension

Update component create extension #314

name: Tests on Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 10 SDK
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: 10.0.x
- name: Clean
run: dotnet clean
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore
- name: Test
run: dotnet test --no-build --no-restore --verbosity normal --filter Category=CI