Skip to content

Commit 249ae47

Browse files
committed
Add test matrix for the different versions of SQL Server
1 parent a48f630 commit 249ae47

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/TestSqlServer.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,14 @@ jobs:
1818
build:
1919
runs-on: ubuntu-24.04
2020

21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
sqlserver_version: [2025, 2022, 2019, 2017]
25+
2126
services:
2227
mssql:
23-
image: mcr.microsoft.com/mssql/server:2025-latest
28+
image: mcr.microsoft.com/mssql/server:${{ matrix.sqlserver_version }}-latest
2429
env:
2530
ACCEPT_EULA: "Y"
2631
SA_PASSWORD: "${{ secrets.MSSQL_SA_PASSWORD }}"

0 commit comments

Comments
 (0)