Skip to content

Commit 985745d

Browse files
authored
Merge pull request #3422 from SeanKilleen/patch-1
(build) Add Matrices for SQL Server Version and Collation
2 parents 2a710e6 + cabcea4 commit 985745d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ jobs:
1010
build:
1111
name: Build
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
SQL_ENGINE_VERSION: [2017,2019,2022]
16+
COLLATION: [SQL_Latin1_General_CP1_CS_AS]
17+
1318

1419
steps:
1520
- name: Checkout repository
@@ -25,8 +30,8 @@ jobs:
2530
uses: potatoqualitee/mssqlsuite@v1.7
2631
with:
2732
install: sqlengine
28-
version: 2017
29-
collation: SQL_Latin1_General_CP1_CS_AS
33+
version: ${{ matrix.SQL_ENGINE_VERSION }}
34+
collation: ${{ matrix.COLLATION }}
3035

3136
- name: Check SQL Install
3237
run: |

0 commit comments

Comments
 (0)