Skip to content

Commit

Permalink
Merge branch 'master' into tf/overload-equality-operator
Browse files Browse the repository at this point in the history
* master:
  chore: Optimize goto_definitions for workspace case (#3914)
  chore: Update index.md (#3911)
  chore: Update index.md (#3910)
  chore: Update how-to-recursion.md (#3912)
  feat: Resolve oracle calls via JSON-RPC (#3902)
  chore: Update explainer-recursion.md (#3906)
  chore: remove unnecessary dependency (#3901)
  chore: improve package.json metadata (#3900)
  feat: prefer `AcirContext`-native methods for performing logic operations (#3898)
  feat: optimize logic gate ACIR-gen (#3897)
  fix: allow abi encoding tuples from JS (#3894)
  chore: error on cspell issues in docs (#3886)
  • Loading branch information
TomAFrench committed Dec 28, 2023
2 parents 33d3910 + 66af0e7 commit e80c628
Show file tree
Hide file tree
Showing 33 changed files with 900 additions and 230 deletions.
32 changes: 29 additions & 3 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,32 @@ concurrency:
cancel-in-progress: true

jobs:
spellcheck:
name: Spellcheck
uses: noir-lang/.github/.github/workflows/spellcheck.yml@main
code:
name: Code
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Check spelling
uses: streetsidesoftware/cspell-action@v2
with:
strict: false # Do not fail, if a spelling mistake is found (This can be annoying for contributors)
incremental_files_only: true # Run this action on files which have changed in PR
files: |
**/*.{md,rs}
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Check spelling
uses: streetsidesoftware/cspell-action@v2
with:
strict: true # Documentation has higher standards for correctness.
incremental_files_only: true # Run this action on files which have changed in PR
files: |
./docs/**/*.md
Loading

0 comments on commit e80c628

Please sign in to comment.