This repository was archived by the owner on Mar 24, 2026. It is now read-only.
build(maven): bump pom.xml to 4.0-SNAPSHOT (#2286) #2
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: Lint | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - run: test/ci/run-codespell.sh | |
| jing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: > | |
| source test/ci/npm-ci.sh | |
| && source test/ci/install-jing.sh | |
| && bats --print-output-on-failure --tap --trace test/rnc.bats | |
| prettier: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo make --directory=/usr/share/doc/git/contrib/diff-highlight | |
| - run: > | |
| source test/ci/npm-ci.sh | |
| && test/ci/run-prettier.sh | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo apt-get purge shellcheck | |
| - run: sudo snap install shellcheck | |
| - run: test/ci/run-shellcheck.sh | |
| shfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo snap install shfmt | |
| - run: shfmt -d . |