Remove trailing tab from wordlist description text. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |