Add instruction "Переход на Składki Preferencyjne и Duży ZUS" #423
Workflow file for this run
This file contains hidden or 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 markdown | |
on: | |
pull_request: | |
paths: | |
- "**.md" | |
- ".github/workflows/markdown_linter_rules.yml" | |
- ".github/workflows/markdown_linter_checks.yml" | |
permissions: | |
contents: read | |
jobs: | |
markdown-lint: | |
name: Lint repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
- name: Install mdl | |
run: gem install mdl | |
- name: Run markdown-linter | |
run: mdl -s .github/workflows/markdown_linter_rules.rb docs/. |