2024-04-26 09:13:48 +00:00
|
|
|
name: CI
|
2024-04-20 15:06:48 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-12-18 16:38:58 +00:00
|
|
|
- uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.13'
|
|
|
|
- run: pip install -r lint/requirements.txt
|
2024-10-12 15:31:57 +00:00
|
|
|
- uses: ruby/setup-ruby@v1
|
2024-04-20 15:06:48 +00:00
|
|
|
with:
|
|
|
|
ruby-version: '3.2'
|
|
|
|
- run: gem install mdl
|
2024-12-18 16:38:58 +00:00
|
|
|
|
|
|
|
- name: Files are UTF-8
|
|
|
|
run: ./lint/encoding.sh .
|
|
|
|
- name: Lint Markdown
|
|
|
|
run: mdl . --ignore-front-matter -r MD003,MD011,MD023,MD027,MD028,MD035,MD037,MD038,MD039,MD047
|
|
|
|
- name: Lint frontmatter
|
|
|
|
run: ./lint/frontmatter.py .
|