• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

samsmithnz / GitHubActionsDotNet / 14707351366

28 Apr 2025 12:04PM CUT coverage: 76.33%. Remained the same
14707351366

push

github

web-flow
Merge pull request #173 from samsmithnz/dependabot/github_actions/core-c27c18812b

Bump gittools/actions from 3.2.0 to 3.2.1 in the core group

144 of 222 branches covered (64.86%)

Branch coverage included in aggregate %.

559 of 699 relevant lines covered (79.97%)

13.88 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/GitHubActionsDotNet/Common/StringExtension.cs
1
using System;
2

3
namespace GitHubActionsDotNet.Common
4
{
5
    public static class StringExtension
6
    {
7
        //.NET Standard 2.0 doesn't have a string split function for strings, so adding it in here.
8
        //.NET Standard 2.1 DOES have a string split function, but that reduces compatible frameworks (for example, .NET Framework is not compatible): (https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support)
9
        public static string[] Split(this string input, string sep)
10
        {
11
            return input.Split(new[] { sep }, StringSplitOptions.None);
×
12
        }
13
    }
14
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc