ci(docker-build): clean up llvm setup so it's using the correct version #1021
This file contains 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
--- | |
# | |
# .github/workflows/bash.yml | |
# | |
# https://github.com/reviewdog/action-shellcheck | |
# | |
name: Bash Checks | |
on: [pull_request] # yamllint disable-line rule:truthy | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
with: | |
github_token: ${{ github.token }} | |
reporter: github-pr-review | |
path: "." | |
exclude: | | |
"./.git/*" | |
"./tcl/*" | |
bats-extra.bash | |
check_all_files_with_shebangs: "false" | |
level: error |