diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9507b619..f34bba7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,6 +46,7 @@ jobs: with: name: code-coverage-results path: code-coverage-results.md + retention-days: 1 - name: Save the PR number in an artifact if: github.event_name == 'pull_request' && (success() || failure()) @@ -60,3 +61,4 @@ jobs: with: name: pr-number path: ./pr-number.txt + retention-days: 1 \ No newline at end of file diff --git a/README.md b/README.md index 6a58967b..0ce963e9 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ public class Order - **Guard.Against.NullOrEmpty** (throws if string, guid or array input is null or empty) - **Guard.Against.NullOrWhiteSpace** (throws if string input is null, empty or whitespace) - **Guard.Against.OutOfRange** (throws if integer/DateTime/enum input is outside a provided range) -- **Guard.Against.EnumOutOfRange** (throws if a enum value is outside a provided Enum range) +- **Guard.Against.EnumOutOfRange** (throws if an enum value is outside a provided Enum range) - **Guard.Against.OutOfSQLDateRange** (throws if DateTime input is outside the valid range of SQL Server DateTime values) - **Guard.Against.Zero** (throws if number input is zero)