2020-11-24 11:41:28 +00:00
|
|
|
---
|
|
|
|
# codespell is a GitHub Actions that runs codespell tool to catch misspell
|
|
|
|
# Reference https://github.com/codespell-project/actions-codespell
|
|
|
|
name: Codespell
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2020-12-02 07:57:02 +00:00
|
|
|
- '*'
|
2022-05-01 01:00:30 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-11-24 11:41:28 +00:00
|
|
|
jobs:
|
|
|
|
codespell:
|
|
|
|
name: codespell
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-18 09:19:02 +00:00
|
|
|
# yamllint disable-line rule:line-length
|
2024-10-28 20:18:00 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2020-11-24 11:41:28 +00:00
|
|
|
- name: codespell
|
2023-08-07 11:30:36 +00:00
|
|
|
run: make containerized-test TARGET=codespell
|