Skip to content

Commit

Permalink
chore: added codespell (#1833)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhil56x authored May 2, 2024
1 parent b99849e commit e615b24
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Spell check

on:
push:
branches:
- "**"
paths:
- "docs/**"
- "**.md"
- "**.rs"
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
paths:
- "docs/**"
- "**.md"
- "**.rs"

jobs:
check_spelling:
name: Check spelling
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
skip: .git,*/package.json,*/package-lock.json,*.lock,.github,.vscode,assets
ignore_words_file: .codespellignore
check_hidden: false

1 comment on commit e615b24

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running 30s test @ http://localhost:8000/graphql

4 threads and 100 connections

Thread Stats Avg Stdev Max +/- Stdev
Latency 7.74ms 3.61ms 93.81ms 73.31%
Req/Sec 3.28k 253.33 3.63k 88.58%

391083 requests in 30.01s, 1.96GB read

Requests/sec: 13030.07

Transfer/sec: 66.88MB

Please sign in to comment.