Bump Microsoft.NET.Test.Sdk from 17.11.0 to 17.12.0 #366
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: Build | |
env: | |
SOLUTION_PATH: allure-csharp.sln | |
BUILD_CONFIGURATION: 'Release' | |
PACKAGE_OUTPUT_PATH: 'artifacts' | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- 'main' | |
- 'hotfix-*' | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Setup .NET Core SDK' | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
- name: 'Restore packages' | |
run: | | |
dotnet restore ${{ env.SOLUTION_PATH }} | |
- name: 'Build project using dotnet' | |
run: | | |
dotnet build ${{ env.SOLUTION_PATH }}\ | |
--no-restore\ | |
--configuration ${{ env.BUILD_CONFIGURATION }} | |
- name: 'Run tests' | |
run: | | |
dotnet test Allure.Net.Commons.Tests\ | |
--no-build\ | |
--configuration ${{ env.BUILD_CONFIGURATION }} | |
dotnet test Allure.SpecFlow.Tests\ | |
--no-build\ | |
--configuration ${{ env.BUILD_CONFIGURATION }} | |
dotnet test Allure.Reqnroll.Tests\ | |
--no-build\ | |
--configuration ${{ env.BUILD_CONFIGURATION }} |