This repository has been archived by the owner on Sep 14, 2024. It is now read-only.
end of life #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Spelling" | |
on: | |
pull_request: null | |
push: | |
branches: | |
- "master" | |
permissions: {} | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
typos_check: | |
name: "Typos" | |
runs-on: "ubuntu-latest" | |
steps: | |
- | |
name: "Checkout repository" | |
uses: "actions/checkout@v4" | |
- | |
name: "Search for misspellings" | |
uses: "crate-ci/typos@master" |