We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39382d3 commit 68e66ccCopy full SHA for 68e66cc
1 file changed
.github/workflows/TestSqlServer.yaml
@@ -39,6 +39,15 @@ jobs:
39
--health-timeout=5s
40
41
steps:
42
+ # Note that the secret is required for the SQL Server service to start above, and that happens before any steps.
43
+ # We still have this step with always() (so it doesn't get skipped if the service failed to start) to help debug
44
+ # issues.
45
+ - name: Check that secrets.MSSQL_SA_PASSWORD2 exists
46
+ if: always() && ${{ secrets.MSSQL_SA_PASSWORD2 == '' }}
47
+ run: |
48
+ echo "::error::Missing secret: MSSQL_SA_PASSWORD2"
49
+ exit 1
50
+
51
- name: Checkout
52
uses: actions/checkout@v6
53
0 commit comments