ADD project SmartIOT.Connector.DependecyInjection. Refactor App proje… #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Develop | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET6 | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Setup .NET8 | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore SmartIOT.Connector.sln | |
- name: Build | |
run: dotnet build -c Release --no-restore SmartIOT.Connector.sln | |
- name: Test | |
run: dotnet test -c Release --no-build --verbosity normal SmartIOT.Connector.sln |