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

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

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