File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,17 @@ jobs:
42
42
uses : actions/checkout@v1
43
43
- name : .NET Build
44
44
run : dotnet build Build.csproj -c Release /p:CI=true
45
- - name : .NET Test
46
- run : dotnet test Build .csproj -c Release --logger GitHubActions /p:CI=true
45
+ - name : Dapper Tests
46
+ run : dotnet test tests/Dapper.Tests/Dapper.Tests .csproj -c Release --logger GitHubActions /p:CI=true
47
47
env :
48
- MySQLConnectionString : server=localhost;Port=${{ job.services.mysql.ports[3306] }};Uid=root;Pwd=root;Database=test;Allow User Variables=true
48
+ MySQLConnectionString : Server=localhost;Port=${{ job.services.mysql.ports[3306] }};Uid=root;Pwd=root;Database=test;Allow User Variables=true
49
+ OLEDBConnectionString : Provider=SQLOLEDB;Server=tcp:localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
50
+ PostgreSqlConnectionString : Server=.;Port=${{ job.services.postgres.ports[5432] }};Database=test;User Id=postgres;Password=postgres;
51
+ SqlServerConnectionString : Server=tcp:localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
52
+ - name : Dapper.Contrib Tests
53
+ run : dotnet test tests/Dapper.Tests.Contrib/Dapper.Tests.Contrib.csproj -c Release --logger GitHubActions /p:CI=true
54
+ env :
55
+ MySQLConnectionString : Server=localhost;Port=${{ job.services.mysql.ports[3306] }};Uid=root;Pwd=root;Database=test;Allow User Variables=true
49
56
OLEDBConnectionString : Provider=SQLOLEDB;Server=tcp:localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
50
57
PostgreSqlConnectionString : Server=.;Port=${{ job.services.postgres.ports[5432] }};Database=test;User Id=postgres;Password=postgres;
51
58
SqlServerConnectionString : Server=tcp:localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
You can’t perform that action at this time.
0 commit comments