-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add: ActionLint CI * fix: checkout * refactor: workflow step 名を明確化 * fix: 未利用変数の名称を変更 * fix: ls を glob で置換 * fix: ls を find で置換 * fix: rpath に関する shellcheck false alert を抑制 * fix: エスケープ周りの shellcheck false alert を抑制 * fix: useless cat を削除 * fix: hex 文字列をラップ * Apply suggestions from code review --------- Co-authored-by: Hiroshiba <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ jobs: | |
if: ${{ startsWith(matrix.os, 'ubuntu-') }} | ||
uses: crate-ci/[email protected] | ||
|
||
shellcheck: | ||
lint-builders: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: <Setup> Check out the repository | ||
|
@@ -89,3 +89,9 @@ jobs: | |
- name: <Test> Check shell files | ||
run: git ls-files | grep -E '\.(ba)?sh' | xargs shellcheck | ||
|
||
- name: <Test> Check workflow files | ||
run: | | ||
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | ||
./actionlint | ||
shell: bash |