Skip to content

Commit 1942936

Browse files
authored
Update NetCoreTests.yml
1 parent 5cd4b83 commit 1942936

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

.github/workflows/NetCoreTests.yml

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,33 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10+
i: [1,2,3,4,5]
1011
include:
11-
- DB: SqlServer2008
12-
CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
13-
- DB: PostgreSQL
14-
CONNECTION_STRING: "Host=localhost;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;"
15-
- DB: Firebird
12+
13+
- i: 1
14+
DB: Firebird
15+
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
16+
17+
- i: 2
18+
DB: Firebird
19+
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
20+
21+
- i: 3
22+
DB: Firebird
23+
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
24+
25+
- i: 4
26+
DB: Firebird
27+
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
28+
29+
- i: 5
30+
DB: Firebird
1631
CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
17-
- DB: MySQL
18-
CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;"
19-
ALLOW_FAILURE: true
20-
- DB: SQLite
2132
runs-on: ubuntu-latest
2233
continue-on-error: ${{matrix.ALLOW_FAILURE == true}}
2334
env:
2435
LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons
25-
name: ${{matrix.DB}}
36+
name: ${{matrix.DB}} + ${{matrix.i}}
2637

2738
steps:
2839
- name: Set up SqlServer

0 commit comments

Comments
 (0)