[DO NOT MERGE - EXPERIMENT] Import markdown to AsciiDoc #125
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
| name: Ruff | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - acp | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Install ruff | |
| run: python3 -m pip install ruff==0.15.11 | |
| - name: Ruff check | |
| run: ruff check plugins/ | |
| - name: Ruff format check | |
| run: ruff format --check plugins/ |