Skip to content

Commit

Permalink
Trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Farshad DASHTI authored and Farshad DASHTI committed Oct 4, 2024
1 parent 17704ed commit e1afa8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ jobs:
run: dotnet restore ${{ inputs.project_path }}

- name: Set Test Project Path
run: echo "test_project_path=${{ inputs.project_path/src\//src\/Tests\/}}.Tests" >> $GITHUB_ENV
run: |
test_project_path="${{ inputs.project_path }}"
test_project_path="${test_project_path/src\//src\/Tests\/}.Tests"
echo "test_project_path=$test_project_path" >> $GITHUB_ENV
- name: Build, Test and Analyze
env:
Expand Down
3 changes: 1 addition & 2 deletions src/DfE.CoreLibs.Utilities/DfE.CoreLibs.Utilities.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@
</None>
</ItemGroup>

</Project>

</Project>

0 comments on commit e1afa8e

Please sign in to comment.