Skip to content

Create spelling.yml

Create spelling.yml #1

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: "Spelling"
on:
pull_request:
branches:
- "main"
- "1.0.0-beta.3"
push:
branches:
- "1.0.0-beta.3"
- "main"
permissions:
contents: "read"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
typos_check:
name: "Typos check"
runs-on: "ubuntu-22.04"
timeout-minutes: 5
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Search for misspellings"
uses: "crate-ci/typos@v1"