spec testing #27
Workflow file for this run
This file contains 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: Markdown lint and typos | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: | |
jobs: | |
markdown-lint-and-typos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Markdown Lint | |
uses: avto-dev/[email protected] | |
with: | |
args: "./README.md" | |
config: "./.markdownlint.jsonc" | |
- name: Typos | |
uses: crate-ci/[email protected] |