Skip to content

Allure-specflow: selective run support #160

Allure-specflow: selective run support

Allure-specflow: selective run support #160

Workflow file for this run

name: Build
env:
SOLUTION_PATH: allure-csharp.sln
BUILD_CONFIGURATION: 'Release'
RESTORE_OUTPUT_PATH: 'packages'
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/[email protected]
- name: 'Setup .NET Core SDK'
uses: actions/[email protected]
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
- name: 'Restore packages'
run: dotnet restore ${{ env.SOLUTION_PATH }} --packages ${{ env.RESTORE_OUTPUT_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/Allure.Net.Commons.Tests.csproj --no-build --configuration ${{ env.BUILD_CONFIGURATION }}
dotnet test Allure.SpecFlowPlugin.Tests/Allure.SpecFlowPlugin.Tests.csproj --no-build --configuration ${{ env.BUILD_CONFIGURATION }}