mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
18 lines
404 B
YAML
18 lines
404 B
YAML
# Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
name: 'Check spelling'
|
|
on:
|
|
# push:
|
|
# pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: streetsidesoftware/cspell-action@v1.2.4
|
|
with:
|
|
config: './cspell.json'
|
|
strict: false
|