File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111 runs-on : ubuntu-latest
12+ services :
13+ docker :
14+ image : docker:dind-rootless
15+ ports :
16+ - 12375:2375
1217 container : mcr.microsoft.com/dotnet/sdk:10.0
18+ env :
19+ TESTCONTAINERS_RYUK_DISABLED : " true"
1320 steps :
14- - uses : actions/checkout@v2
21+ - uses : actions/checkout@v6
1522 - name : Restore dependencies
1623 run : dotnet restore
1724 - name : Build
1825 run : dotnet build Extensions.slnx --no-restore
1926 - name : Test
20- run : dotnet test Extensions.slnx --no-build --verbosity normal --filter "FullyQualifiedName!~Fusonic.Extensions.UnitTests.EntityFrameworkCore & FullyQualifiedName!~Fusonic.Extensions.Hangfire.Tests.HangfireTransactionalBehaviorTests"
27+ run : |
28+ export DOCKER_HOST=tcp://localhost:12375
29+ dotnet test --solution Extensions.slnx --no-build --verbosity normal
Original file line number Diff line number Diff line change 33 <File Path =" .editorconfig" />
44 <File Path =" .editorconfig.disableAnalyzers" />
55 <File Path =" .gitlab-ci.yml" />
6+ <File Path =" global.json" />
67 <File Path =" README.md" />
78 <File Path =" src/Directory.Build.props" />
89 <File Path =" src/Directory.Packages.props" />
Original file line number Diff line number Diff line change 1+ {
2+ "sdk" : {
3+ "version" : " 10.0.100" ,
4+ "rollForward" : " major"
5+ },
6+ "test" : {
7+ "runner" : " Microsoft.Testing.Platform"
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments