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.
1 parent b06c8e4 commit c28feffCopy full SHA for c28feff
.github/workflows/NetCoreTests.yml
@@ -7,6 +7,7 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
+ os: [ubuntu-latest, windows-latest]
11
include:
12
- DB: SqlServer2008
13
CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
@@ -18,11 +19,10 @@ jobs:
18
19
CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;"
20
ALLOW_FAILURE: true
21
- DB: SQLite
- runs-on: ubuntu-latest
22
continue-on-error: ${{matrix.ALLOW_FAILURE == true}}
23
env:
24
LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons
25
- name: ${{matrix.DB}}
+ name: "${{matrix.DB}} - {{matrix.os}}"
26
27
steps:
28
- name: Set up SqlServer
0 commit comments