Skip to content

Commit

Permalink
meta: add spellcheck to CI
Browse files Browse the repository at this point in the history
- fix spelling in `dither_page.py`
  • Loading branch information
tfuxu committed Nov 10, 2024
1 parent 44ab559 commit 8672e40
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
skip = ./po, ./venv, ./builddir
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@ on:
- '**/*.md'

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: codespell-project/actions-codespell@v2
flatpak:
name: Build Flatpak Package
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-45
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion halftone/views/dither_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, parent, **kwargs):
self.output_options: OutputOptions = OutputOptions()

self.keep_aspect_ratio = True
self.loading_overlay_delay = 2000 # In miliseconds
self.loading_overlay_delay = 2000 # In milliseconds

self.setup_signals()
self.setup()
Expand Down

0 comments on commit 8672e40

Please sign in to comment.