1
0
mirror of https://github.com/rust-unofficial/awesome-rust.git synced 2025-01-19 05:49:19 +02:00
2022-06-11 10:17:08 +01:00

31 lines
710 B
YAML

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-md:
runs-on: ubuntu-latest
name: Lint Markdown content
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Markdown lint for README
uses: docker://avtodev/markdown-lint:v1
with:
config: ./.markdownlint.json
args: ./README.md
lint-editorconfig:
runs-on: ubuntu-latest
name: Lint for editorconfig violations
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Check for editorconfig violations
uses: editorconfig-checker/action-editorconfig-checker@v1