diff --git a/.github/workflows/spell_check.yml b/.github/workflows/spell_check.yml new file mode 100644 index 0000000..09aea28 --- /dev/null +++ b/.github/workflows/spell_check.yml @@ -0,0 +1,15 @@ +name: PR +on: + push: + branches: + - main + +# test with no permissions +permissions: { } + +jobs: + spellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: streetsidesoftware/cspell-action@v7 \ No newline at end of file diff --git a/ConsoleApp/Program.cs b/ConsoleApp/Program.cs index 404e1bd..6078764 100644 --- a/ConsoleApp/Program.cs +++ b/ConsoleApp/Program.cs @@ -1,4 +1,6 @@ // See https://aka.ms/new-console-template for more information Console.WriteLine("Hello, World!"); -Console.WriteLine("This change wont break the build!"); \ No newline at end of file +Console.WriteLine("This change wont break the build!"); + +var blah = "typoz"; \ No newline at end of file diff --git a/cspell.json b/cspell.json new file mode 100644 index 0000000..4ac379d --- /dev/null +++ b/cspell.json @@ -0,0 +1,7 @@ +{ + "version": "0.2", + "files": [ + "**/*.cs" + ], + "language": "en,en-GB" +}