Skip to content

📝 ♻️

📝 ♻️ #442

Workflow file for this run

name: "Lint Markdown"
on:
push:
paths:
- '**/*.md'
pull_request:
paths:
- '**/*.md'
jobs:
LintMarkdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Set up Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: "Instala el linter"
run: gem install mdl
- name: "Comprueba estilo de archivos Markdown"
working-directory: ${{ github.workspace }}
run: mdl --style .mdl.rb .