Skip to content

Remove trailing tab from wordlist description text. #6

Remove trailing tab from wordlist description text.

Remove trailing tab from wordlist description text. #6

name: Lint Wordlists
on:
push:
paths:
- .yamllint.yml
- data/wordlists.yml
- lint/wordlists_yml_spec.rb
pull_request:
paths:
- .yamllint.yml
- data/wordlists.yml
- lint/wordlists_yml_spec.rb
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install yamllint
run: |
python -m pip install --upgrade pip
pip install yamllint
- name: Lint YAML files
run: yamllint data/wordlists.yml
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run linting
run: 'bundle exec rake lint:wordlists'