Skip to content

Bump next from 14.2.13 to 15.1.2 #538

Bump next from 14.2.13 to 15.1.2

Bump next from 14.2.13 to 15.1.2 #538

Workflow file for this run

# NOTE: https://github.com/rails/rails/blob/main/.github/workflows/lint.yml
name: Spell
on:
pull_request:
branches:
- master
jobs:
codespell:
name: Check spelling all files with codespell
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codespell==2.1.0
- name: Check spelling with codespell
run: codespell --ignore-words=codespell.txt --skip "./node_modules,./package-lock.json" || exit 1