This repository was archived by the owner on Dec 10, 2025. It is now read-only.
ci #141
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| permissions: | |
| contents: read | |
| jobs: | |
| makefile-descriptions: | |
| name: "makefile-descriptions" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Check Makefile | |
| run: make makefile-descriptions | |
| typos: | |
| name: "typos" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Check spelling | |
| uses: crate-ci/typos@master | |
| bash: | |
| name: "bash" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install bash dependencies ${{ matrix.os }} | |
| run: sudo apt-get install shfmt shellcheck coreutils -y | |
| - name: Check format bash code ${{ matrix.os }} | |
| run: make bash-check | |
| - name: Check lint bash code ${{ matrix.os }} | |
| run: make bash-lint | |
| dprint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: dprint-check-action | |
| uses: dprint/check@v2.3 |