mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-07-27 14:50:54 +02:00
27 lines
533 B
YAML
27 lines
533 B
YAML
name: Spell Check
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
workflow_call: {}
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
CARGO_TERM_COLOR: always
|
|
CLICOLOR: 1
|
|
|
|
jobs:
|
|
spelling:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions Repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #v7.0.0
|
|
- name: Spell Check Repo
|
|
uses: crate-ci/typos@bee27e3a4fd1ea2111cf90ab89cd076c870fce14 #v1.48.0
|