Skip to content

Commit

Permalink
fix: changed ci os to windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sikelio committed Sep 1, 2024
1 parent f81e6f5 commit d01731a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions System.Test/IsOnlineTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void ConstructorWithIpAddressAndCustomTimeout()
Assert.AreEqual(customTimeout, isOnline.TimeOut, $"Timeout should be {customTimeout}.");
}

/*[TestMethod]
[TestMethod]
public void CheckWithHostname()
{
IsOnline isOnline = new(_googleHostname);
Expand All @@ -59,6 +59,6 @@ public void CheckWithIpAddress()
bool result = isOnline.Check();

Assert.IsTrue(result, "Google IP address should be reachable.");
}*/
}
}
}

0 comments on commit d01731a

Please sign in to comment.