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 3f9491d commit 36feaa0Copy full SHA for 36feaa0
.github/workflows/NetCoreTests.yml
@@ -4,10 +4,12 @@ on: [push, pull_request]
4
5
jobs:
6
db:
7
+ runs-on: ${{matrix.os}}
8
+ name: "${{matrix.DB}} - ${{matrix.os}}"
9
strategy:
10
fail-fast: false
11
matrix:
- os: [ubuntu-latest, windows-latest]
12
+ os: [ ubuntu-latest, windows-latest ]
13
include:
14
- DB: SqlServer2008
15
CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
@@ -22,8 +24,6 @@ jobs:
22
24
continue-on-error: ${{matrix.ALLOW_FAILURE == true}}
23
25
env:
26
LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons
- runs-on: ${{matrix.os}}
- name: "${{matrix.DB}} - ${{matrix.os}}"
27
28
steps:
29
- name: Set up SqlServer
0 commit comments