Skip to content

Commit 9ab647f

Browse files
committed
Add MSMQ installation step to GitHub Actions build workflow
1 parent 1b329aa commit 9ab647f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v4
2121

22+
- name: Install MSMQ
23+
run: |
24+
Write-Host "Installing MSMQ feature..."
25+
Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-Server -All -NoRestart
26+
Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-HTTP -All -NoRestart
27+
Write-Host "MSMQ installation completed."
28+
Get-Service -Name MSMQ | Format-List *
29+
2230
- name: Setup .NET
2331
uses: actions/setup-dotnet@v4
2432
with:

0 commit comments

Comments
 (0)