misc: prefix ValidationTask with I, it's an interface

Mention in PR comment script that you now need to be logged into GitHub to download artifacts.
This commit is contained in:
Evan Husted 2024-12-30 20:57:18 -06:00
parent a5cde8e006
commit 318498eab0
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
namespace Ryujinx.BuildValidationTasks
{
public interface ValidationTask
public interface IValidationTask
{
public bool Execute(string projectPath, bool isGitRunner);
}

View file

@ -7,7 +7,7 @@ using System.Text.Encodings.Web;
namespace Ryujinx.BuildValidationTasks
{
public class LocalesValidationTask : ValidationTask
public class LocalesValidationTask : IValidationTask
{
public LocalesValidationTask() { }