Skip to content

Commit

Permalink
Enable spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
goerz committed Oct 13, 2023
1 parent 7b9e4dd commit 74a7eb5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Spell Check
on:
push:
branches:
- master
- 'release-*'
tags:
- '*'
pull_request:
branches:
- master
jobs:
typos-check:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: CI
on:
- push
- pull_request
push:
branches:
- master
- 'release-*'
tags:
- '*'
pull_request:
branches:
- master
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
Expand Down
2 changes: 2 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[files]
extend-exclude = ["*.bib", "test_formatting.jl"]

0 comments on commit 74a7eb5

Please sign in to comment.