aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar Yaroslav Halchenko <debian@onerussian.com>2024-04-13 10:05:38 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2024-04-13 10:05:38 +0530
commit77b5f1481e06443862c6fa31a10fe9196f628f39 (patch)
treeb635f65d87a2dfdc1d9873d15db870443a37b3f0 /.github/workflows
parentUpgrade electron to '29.3.0' and some other deps (diff)
downloadferdium-app-77b5f1481e06443862c6fa31a10fe9196f628f39.tar.gz
ferdium-app-77b5f1481e06443862c6fa31a10fe9196f628f39.tar.zst
ferdium-app-77b5f1481e06443862c6fa31a10fe9196f628f39.zip
Add codespell support (config, GH action to detect new typos) + make it fix some typos (#1648)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codespell.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 000000000..feadb9a34
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,23 @@
1# Codespell configuration is within .codespellrc
2---
3name: Codespell
4
5on:
6 push:
7 branches: [develop]
8 pull_request:
9 branches: [develop]
10
11permissions:
12 contents: read
13
14jobs:
15 codespell:
16 name: Check for spelling errors
17 runs-on: ubuntu-22.04
18
19 steps:
20 - name: Checkout
21 uses: actions/checkout@v4
22 - name: Codespell
23 uses: codespell-project/actions-codespell@v2