Add hermit package version 1.5.0 to TUC and TRH #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: 'Sanity Checks' | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| # markdownlint: https://github.com/markdownlint/markdownlint | |
| mdl: | |
| name: 'markdownlint' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: 'Checkout repository' | |
| uses: actions/checkout@v4.1.1 | |
| - name: "Install Ruby" | |
| # v1.227.0 | |
| uses: ruby/setup-ruby@1a615958ad9d422dd932dc1d5823942ee002799f | |
| with: | |
| ruby-version: '3.3' | |
| bundler-cache: true | |
| - name: 'Install mdl' | |
| run: gem install mdl | |
| - name: 'Run mdl' | |
| run: | | |
| set -euxo pipefail | |
| cd ${{ github.workspace }}/ | |
| mdl --version | |
| for f in $(find . \( -path ./.git -o -path ./bin -o -path ./.github \) -prune -o -type f -name "*.md" -print); do | |
| mdl "$f" | |
| done | |
| shellcheck: | |
| name: "shellcheck" | |
| strategy: | |
| fail-fast: false | |
| # Run on Linux | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4.1.1 | |
| - name: Install shellcheck on Ubuntu | |
| run: | | |
| sudo apt update | |
| sudo apt install shellcheck -y | |
| - name: Run shellcheck | |
| run: | | |
| set -euxo pipefail | |
| cd ${{ github.workspace }}/ | |
| shellcheck --version | |
| for f in $(find . \( -path ./.git -o -path ./bin \) -prune -o -type f -print); do | |
| if file "$f" | grep "shell script" &>/dev/null; then | |
| shellcheck -x "$f" | |
| fi | |
| done |