mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-23 03:12:14 +08:00
28 lines
675 B
YAML
28 lines
675 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
|
|
|
|
name: "Spelling"
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request: null
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
permissions: {} # yamllint disable-line rule:braces
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
typos_check:
|
|
name: "文A Typos check"
|
|
runs-on: "ubuntu-22.04"
|
|
timeout-minutes: 1
|
|
steps:
|
|
-
|
|
name: "Checkout repository"
|
|
uses: "actions/checkout@v3"
|
|
-
|
|
name: "Search for misspellings"
|
|
uses: "crate-ci/typos@master"
|