We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a710e6 + cabcea4 commit 985745dCopy full SHA for 985745d
.github/workflows/integration-tests.yml
@@ -10,6 +10,11 @@ jobs:
10
build:
11
name: Build
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ SQL_ENGINE_VERSION: [2017,2019,2022]
16
+ COLLATION: [SQL_Latin1_General_CP1_CS_AS]
17
+
18
19
steps:
20
- name: Checkout repository
@@ -25,8 +30,8 @@ jobs:
25
30
uses: potatoqualitee/mssqlsuite@v1.7
26
31
with:
27
32
install: sqlengine
28
- version: 2017
29
- collation: SQL_Latin1_General_CP1_CS_AS
33
+ version: ${{ matrix.SQL_ENGINE_VERSION }}
34
+ collation: ${{ matrix.COLLATION }}
35
36
- name: Check SQL Install
37
run: |
0 commit comments