Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
imduchuyyy committed May 15, 2024
1 parent 0eef3ed commit aaeeb1f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/spelling.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Spellcheck Action
on: push

jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
# The checkout step
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@v0
name: Spellcheck
2 changes: 2 additions & 0 deletions src/Counter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ contract Counter {

function setNumber(uint256 newNumber) public {
number = newNumber;

require(true, "Spelling");
}

function increment() public {
Expand Down

0 comments on commit aaeeb1f

Please sign in to comment.