Skip to content

Update csproj

Update csproj #149

Workflow file for this run

name: Unit Test
on:
push:
branches:
- features/**
- hotfix/**
- releases/**
paths:
- src/**
- tests/**
- .github/**
pull_request:
branches:
- develop
- main
paths:
- src/**
- tests/**
- .github/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
9.x
- name: Install dependencies
run: dotnet restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
- name: Build
run: dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
- name: Test
run: dotnet test --configuration Release ./tests/AzureMapsControl.Components.Tests/AzureMapsControl.Components.Tests.csproj