# Copyright © SixtyFPS GmbH <info@slint.dev>
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0

name: "Check spelling"
on:
    #  push:
    #  pull_request:
    workflow_dispatch:

jobs:
    spellcheck:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v6
            - uses: streetsidesoftware/cspell-action@v8
              with:
                  config: "./cspell.json"
                  strict: false
