Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Create spelling workflow #152

Merged
merged 1 commit into from
Nov 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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"
Loading