/
githubmirror
/
awesome-rust
Обзор
Документация
Войти
/
githubmirror
/
awesome-rust
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/lint.yml
43 строки
1 KB
Suradet PS
Update actions/checkout @v6 -> v7 in lint.yml
07 июл 2026, 10:07
Не верифицирован
07 июл 2026, 10:07
7da7f88
Код
Авторство
О чём код?
name: Lint on: push: branches: - main pull_request: branches: - main jobs: lint-md: runs-on: ubuntu-24.04 name: Lint Markdown content steps: - name: Checkout the repository uses: actions/checkout@v7 - name: Markdown lint for README uses: docker://avtodev/markdown-lint:v1 with: config: ./.markdownlint.json args: ./README.md lint-editorconfig: runs-on: ubuntu-24.04 name: Lint for editorconfig violations steps: - name: Checkout the repository uses: actions/checkout@v7 - name: Check for editorconfig violations uses: editorconfig-checker/action-editorconfig-checker@v2 lint-markdown-toc: runs-on: ubuntu-24.04 name: Lint for Table of Contents steps: - name: Checkout the repository uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: 16 - run: npm install markdown-toc - run: ./node_modules/.bin/markdown-toc -i README.md - run: git diff --exit-code