Skip to content

Fix typos and add Codespell GitHub actions #223

Fix typos and add Codespell GitHub actions

Fix typos and add Codespell GitHub actions #223

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- "main"
jobs:
codespell:
runs-on: ubuntu-latest

Check failure on line 9 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
steps:
- uses: codespell-project/actions-codespell@v2
with:
skip: lib/ffaker/data,REFERENCE.md
ignore_words_list: nce,expresso
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
name: Ruby ${{ matrix.ruby }} test
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache
- run: bundle exec rake test