File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
branches : [ master-servicetitan ]
5
5
env :
6
+ DOTNET_CLI_TELEMETRY_OPTOUT : " true"
6
7
DO_CONFIG_FILE : " /tmp/do-test.cfg"
7
8
DO_STORAGE : " pgsql160"
8
9
DO_TargetFrameworks : net8.0
@@ -12,12 +13,13 @@ jobs:
12
13
runs-on : ubuntu-latest
13
14
timeout-minutes : 120
14
15
steps :
15
- - uses : ikalnytskyi/action-setup-postgres@v6
16
+ - uses : actions/checkout@v4
16
17
- name : Setup .NET
17
- uses : actions/setup-dotnet@v3
18
+ uses : actions/setup-dotnet@v4
18
19
with : { dotnet-version: 8 }
19
20
- name : Build
20
21
run : dotnet build -v q Orm.sln
22
+ - uses : ikalnytskyi/action-setup-postgres@v6
21
23
- name : Init Test DB
22
24
run : |
23
25
echo 127.0.0.1 pghost >>/etc/hosts
27
29
- name : Create DO Tests Config file
28
30
run : echo default=postgresql://dotest:dotest@localhost/dotest >$DO_CONFIG_FILE
29
31
- name : Tests
30
- run : dotnet test --no-build -v n Orm/Xtensive.Orm.Tests/Xtensive.Orm.Tests.csproj --filter 'TestCategory!=Mute'
31
-
32
+ run : dotnet test --no-build -v n Orm/Xtensive.Orm.Tests.Sql/Xtensive.Orm.Tests.Sql.csproj --filter 'TestCategory!=Mute'
32
33
You can’t perform that action at this time.
0 commit comments