Skip to content

Commit

Permalink
Fix CI yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
IhnatKlimchuk committed Jun 5, 2022
1 parent 9605857 commit 9839157
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: docker-compose -f docker-compose.tests.yml up -d

- name: Run tests
run: dotnet test ./tests/Notidar.Mongo2Elastic.Tests/Notidar.Mongo2Elastic.Tests.csproj"
run: dotnet test ./tests/Notidar.Mongo2Elastic.Tests/Notidar.Mongo2Elastic.Tests.csproj

- name: Destroy tests infrastructure
run: docker-compose -f docker-compose.tests.yml down
5 changes: 3 additions & 2 deletions Notidar.Mongo2Elastic.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
LICENSE = LICENSE
mongo_setup.sh = mongo_setup.sh
README.md = README.md
.github\workflows\tests.yml = .github\workflows\tests.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Notidar.Mongo2Elastic.Abstractions", "src\Notidar.Mongo2Elastic.Abstractions\Notidar.Mongo2Elastic.Abstractions.csproj", "{1B6E8105-EE7D-4353-9B97-01207CA7B15F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Notidar.Mongo2Elastic.Elasticsearch", "src\Notidar.Mongo2Elastic.Elasticsearch\Notidar.Mongo2Elastic.Elasticsearch.csproj", "{A4230440-DB15-4D54-A08F-908D42BB8F57}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Notidar.Mongo2Elastic.Elasticsearch", "src\Notidar.Mongo2Elastic.Elasticsearch\Notidar.Mongo2Elastic.Elasticsearch.csproj", "{A4230440-DB15-4D54-A08F-908D42BB8F57}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Notidar.Mongo2Elastic.MongoDB", "src\Notidar.Mongo2Elastic.MongoDb\Notidar.Mongo2Elastic.MongoDB.csproj", "{66A09431-EF7A-47D0-A666-9DF28789357B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Notidar.Mongo2Elastic.MongoDB", "src\Notidar.Mongo2Elastic.MongoDb\Notidar.Mongo2Elastic.MongoDB.csproj", "{66A09431-EF7A-47D0-A666-9DF28789357B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,23 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>annotations</Nullable>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Bogus" Version="34.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
<PackageReference Include="Bogus" Version="34.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand All @@ -37,7 +36,4 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json" /></VisualStudio></ProjectExtensions>

</Project>

0 comments on commit 9839157

Please sign in to comment.