chore(patterns): Update patterns list #12
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
| name: CI | |
| on: pull_request | |
| jobs: | |
| Test: | |
| runs-on: | |
| - self-hosted | |
| - CI-CD | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@v7 | |
| - name: Run actionlint | |
| run: actionlint -ignore 'label "CI-CD" is unknown' .github/workflows/CI.yml | |
| - name: Run codespell | |
| run: codespell --enable-colors | |
| - name: Run mdl | |
| run: mdl --style .github/workflows/mdl_style.rb . | |
| - name: Run scdoc | |
| run: scdoc < doc/man/aps.1.scd > doc/man/aps.1 | |
| - name: Run shellcheck | |
| run: find . -name '*.sh' -exec shellcheck --color=always {} + | |
| - name: Run cargo fmt | |
| run: cargo fmt --check | |
| - name: Run cargo clippy | |
| run: cargo clippy --all-targets --all-features -- -D warnings | |
| - name: Run cargo test | |
| run: cargo test | |
| - name: Run cargo build | |
| run: cargo build --release | |
| - name: Cleanup | |
| run: rm -rvf doc/man/aps.1 target/ ~/.cargo |