mirror of
https://github.com/rust-unofficial/awesome-rust.git
synced 2024-11-20 11:36:11 -05:00
22 lines
391 B
YAML
22 lines
391 B
YAML
|
name: Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
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
|