Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/spell_check.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 3 additions & 1 deletion ConsoleApp/Program.cs
Original file line number Diff line number Diff line change
@@ -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!");
Console.WriteLine("This change wont break the build!");

var blah = "typoz";

Check warning on line 6 in ConsoleApp/Program.cs

View workflow job for this annotation

GitHub Actions / Build and Test

The variable 'blah' is assigned but its value is never used

Check warning on line 6 in ConsoleApp/Program.cs

View workflow job for this annotation

GitHub Actions / Build and Test

The variable 'blah' is assigned but its value is never used
7 changes: 7 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"version": "0.2",
"files": [
"**/*.cs"
],
"language": "en,en-GB"
}
Loading