chore(deps): bump rubocop from 1.54.2 to 1.55.0 #392
Workflow file for this run
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 | |
on: [pull_request] | |
jobs: | |
markdownlint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node_version: | |
- 14 | |
- 16 | |
- 18 | |
- 20 | |
architecture: | |
- x64 | |
# an extra windows-x86 run: | |
include: | |
- os: windows-2019 | |
node_version: 14 | |
architecture: x86 | |
name: πΆ Markdown Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
architecture: ${{ matrix.architecture }} | |
- run: npm install -g [email protected] | |
- run: markdownlint '**/*.md' --ignore 'node_modules' --ignore 'venv' --ignore 'packages/**/node_modules/**' --ignore 'languages/**/node_modules/**' | |
shellcheck: | |
name: π₯ Shell | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: π§Ή ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
yamllint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8'] | |
name: πΊ YAML Lint Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: π§Ή YAML Lint | |
uses: ibiqlik/[email protected] | |
flake8: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8'] | |
name: π· Flake8 Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: π§Ή flake8 Lint | |
uses: py-actions/flake8@v2 | |
with: | |
ignore: "F821" | |
max-line-length: "100" | |
rubocop: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['3.2.1'] | |
name: β Rubocop Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: | |
bundle exec rubocop | |
mdl: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['3.2.1'] | |
name: β Markdownlint Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: | |
bundle exec mdl . |