Skip to content

Commit

Permalink
Add spellcheck to workflow (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Aug 26, 2023
1 parent d8c919f commit 3aac3a7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,19 @@ jobs:
- run: dotnet format --no-restore --verify-no-changes --severity info
- run: dotnet build --no-restore
- run: dotnet test --no-build
- uses: actions/checkout@v3
with:
repository: josefpihrt/wordb
path: wordb
- run: dotnet tool install -g Roslynator.DotNet.Cli --version 0.7.0
- run: |
roslynator spellcheck DotMarkdown.sln --dry-run --scope all --exclude DotMarkdown/LanguageIdentifiers.cs DotMarkdown/Emojis.cs --words \
spellcheck \
../wordb/data/en \
../wordb/data/en-us \
../wordb/data/names.txt \
../wordb/data/tech.names.txt \
../wordb/data/tech.acronyms.txt
- run: dotnet pack --no-build
- uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 4 additions & 0 deletions src/spellcheck
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
autolink
Josef
Pihrt
txt

0 comments on commit 3aac3a7

Please sign in to comment.