anng: adapt to NNG v2.0.0-alpha.7 API #244
Workflow file for this run
This file contains hidden or 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
| # CI for top-level README.md. Not for the containing crates - just checks the markdown. | |
| name: main-readme | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| markdownlint: | |
| name: Markdown Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.1 | |
| - name: Run markdownlint on top-level README | |
| uses: DavidAnson/markdownlint-cli2-action@v22 | |
| with: | |
| globs: README.md |