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-07 20:14:45 +00:00
|
|
|
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
2020-11-24 11:41:28 +00:00
|
|
|
- name: codespell
|
2023-08-07 11:30:36 +00:00
|
|
|
run: make containerized-test TARGET=codespell
|