Skip to content

Commit

Permalink
chore: multi dotnet versions (#4)
Browse files Browse the repository at this point in the history
### 🗒️ Description

multiple dotnet versions

### ✅ Checklist

<!--- Please include the following in your Pull Request when applicable
-->

- [ ] Linked to any related issues in the PR description
- [ ] Added or updated documentation
- [ ] Tests for new functionality and regression tests for bug fixes
- [ ] Breaking changes were made
  • Loading branch information
saan800 authored Jul 23, 2024
1 parent 71bcbec commit e60ab1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./reports/coverage/
fail_ci_if_error: false
flags: unittests
flags: unittests, ${{ matrix.dotnet-version }}
slug: saan800/saansoft-correlationId
2 changes: 1 addition & 1 deletion src/SaanSoft.CorrelationId/SimpleCorrelationIdProvider.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace SaanSoft.CorrelationId;

/// <summary>
/// If no correlationId is set, it will default to `Guid.NewGuid().ToString()` to ensure a value is always provided.
/// If no correlationId is set, it will default to `Guid.NewGuid().ToString()` to ensure a value is always provided
/// </summary>
public class SimpleCorrelationIdProvider : ICorrelationIdProvider
{
Expand Down
1 change: 1 addition & 0 deletions test/SaanSoft.Tests.CorrelationId.Common/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
global using System;
global using FakeItEasy;

0 comments on commit e60ab1f

Please sign in to comment.