Skip to content

Commit

Permalink
Fix: Dockerfile名の変更をGithub Actionに反映
Browse files Browse the repository at this point in the history
- hadolint-actionは複数ファイルを同時にかけられないので、冗長だがstepを一つ増やした。

hadolint/hadolint-action#3
  • Loading branch information
momocus committed Nov 22, 2022
1 parent 58ad230 commit d72fecf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/check.yml
Expand Up @@ -69,7 +69,13 @@ jobs:
run: bundle exec erblint --lint-all

# lint by hadolint
- name: Run Hadolint
- name: Run Hadolint for dev.Dockerfile
uses: hadolint/hadolint-action@master
with:
dockerfile: Dockerfile
dockerfile: dev.Dockerfile

# lint by hadolint
- name: Run Hadolint for fly.Dockerfile
uses: hadolint/hadolint-action@master
with:
dockerfile: fly.Dockerfile

0 comments on commit d72fecf

Please sign in to comment.