Bump Microsoft.NET.Test.Sdk from 18.0.0 to 18.0.1 #94
This file contains hidden or 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: Test | |
| env: | |
| SOLUTION_PATH: allure-csharp.sln | |
| BUILD_CONFIGURATION: 'Release' | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - '*' | |
| push: | |
| branches: | |
| - 'main' | |
| - 'hotfix-*' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| 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 | |
| 8.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 }} |