Check for LocalDB failures early

Fixes #1539
This commit is contained in:
Dominion
2023-06-13 18:00:34 -04:00
parent 4a3b2bba77
commit ca84aca54c
+7
View File
@@ -290,6 +290,13 @@ jobs:
BYOND_MAJOR: 514
BYOND_MINOR: 1588
steps:
- name: Wait for LocalDB Connection # Do this first because we don't want to find out it's failing later
shell: powershell
if: ${{ matrix.database-type == 'SqlServer' }}
run: |
Write-Host "Checking"
sqlcmd -l 600 -S "(localdb)\MSSQLLocalDB" -Q "SELECT @@VERSION;"
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with: