21 lines
335 B
YAML
21 lines
335 B
YAML
|
---
|
||
|
# yamllint disable rule:line-length
|
||
|
name: Typos
|
||
|
|
||
|
on: # yamllint disable-line rule:truthy
|
||
|
push:
|
||
|
pull_request:
|
||
|
types:
|
||
|
- opened
|
||
|
- synchronize
|
||
|
- reopened
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: typos-action
|
||
|
uses: crate-ci/typos@v1.13.10
|