Fix regression: non-working lambda-steps and lambda-fixtures API #162
Workflow file for this run
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' | |
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 }} |