2021-04-11 10:58:04 -04:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
2022-05-21 22:23:41 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-04-11 10:58:04 -04:00
|
|
|
jobs:
|
2022-07-27 19:48:25 -04:00
|
|
|
changelog-formatting:
|
|
|
|
name: Check CHANGELOGs formatting
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: skipkayhil/rails-bin
|
|
|
|
ref: 44270430c14385fd7db002b47f0819af5d824352
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
ruby-version: 3.1
|
|
|
|
bundler-cache: true
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
path: rails
|
|
|
|
- run: bin/check-changelogs ./rails
|
2021-05-03 10:09:25 -04:00
|
|
|
codespell:
|
|
|
|
name: Check spelling all files with codespell
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-03-29 02:33:19 -04:00
|
|
|
python-version: ['3.10']
|
2021-05-03 10:09:25 -04:00
|
|
|
steps:
|
2022-03-30 22:35:04 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-03 10:09:25 -04:00
|
|
|
- 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
|
2022-08-18 15:55:51 -04:00
|
|
|
pip install codespell==2.1.0
|
2021-05-03 10:09:25 -04:00
|
|
|
- name: Check spelling with codespell
|
|
|
|
run: codespell --ignore-words=codespell.txt || exit 1
|
2021-04-11 10:58:04 -04:00
|
|
|
misspell:
|
2021-05-03 10:09:25 -04:00
|
|
|
name: Check spelling all files in commit with misspell
|
2021-04-11 10:58:04 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-30 22:35:04 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-11 10:58:04 -04:00
|
|
|
- name: Install
|
2022-04-29 15:22:01 -04:00
|
|
|
run: wget -O - -q https://raw.githubusercontent.com/client9/misspell/c0b55c8239520f6b5aa15a0207ca8b28027ba49e/install-misspell.sh | sh -s -- -b .
|
2021-04-11 10:58:04 -04:00
|
|
|
- name: Misspell
|
|
|
|
run: git ls-files --empty-directory | xargs ./misspell -i 'aircrafts,devels,invertions' -error
|