Skip to content

Commit

Permalink
Remove pull-request workflow and comment out tests
Browse files Browse the repository at this point in the history
Deleted the pull-request workflow file and its reference in the solution file. Additionally, commented out the test steps in both release and merge workflows for a temporary bypass of the test execution.
  • Loading branch information
frankhaugen committed Aug 5, 2024
1 parent 9f4448d commit ffdb443
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Build Solution
run: dotnet build --configuration Release --no-restore /p:Version=${{ steps.get_release.outputs.tag }}.${{ github.run_number }}

- name: Run Tests
run: dotnet test --no-build --configuration Release --logger trx --results-directory TestResults
# - name: Run Tests
# run: dotnet test --no-build --configuration Release --logger trx --results-directory TestResults

- name: Pack NuGet Packages
run: dotnet pack --no-build --configuration Release --output nupkgs /p:Version=${{ steps.get_release.outputs.tag }}-preview
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/pull-request.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Build Solution
run: dotnet build --configuration Release --no-restore /p:Version=${{ steps.get_release.outputs.tag }}.${{ github.run_number }}

- name: Run Tests
run: dotnet test --no-build --configuration Release --logger trx --results-directory TestResults
# - name: Run Tests
# run: dotnet test --no-build --configuration Release --logger trx --results-directory TestResults

- name: Pack NuGet Packages
run: dotnet pack --no-build --configuration Release --output nupkgs /p:Version=${{ steps.get_release.outputs.tag }}
Expand Down
1 change: 0 additions & 1 deletion Frank.Wpf.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B6D71F9B-2F02-4A5D-8D81-E72B57F1942A}"
ProjectSection(SolutionItems) = preProject
.github\workflows\merge.yml = .github\workflows\merge.yml
.github\workflows\pull-request.yml = .github\workflows\pull-request.yml
.github\workflows\release.yml = .github\workflows\release.yml
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
Expand Down

0 comments on commit ffdb443

Please sign in to comment.