added link to awesome-shizuku repo in getting more #1155
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: ci | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Check | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Check | |
| run: ./check.sh | |
| markdownlint: | |
| runs-on: ubuntu-latest | |
| name: Markdownlint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Markdownlint | |
| uses: nosborn/github-action-markdown-cli@master | |
| with: | |
| files: "*.md" | |
| config_file: .markdownlint.json | |
| ensure_sorted: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| name: Ensure sorted | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Ensure sorted | |
| run: python3 ensure_sorted.py | |