Skip to content

Integrate spell checker into GitHub workflows #2

Integrate spell checker into GitHub workflows

Integrate spell checker into GitHub workflows #2

Workflow file for this run

# Spell checker

Check failure on line 2 in .github/workflows/typos.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/typos.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
name: Typos Action
on: [pull_request]
branches:
- master
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: Check spelling
uses: crate-ci/typos@master
with:
files: ${{ steps.changed-files.outputs.all_changed_files }}
write_changes: false