core: add aws cli to toolkit #22
Workflow file for this run
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
name: Dockerfile Linter | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Dockerfile lint | |
# https://github.com/hadolint/hadolint | |
# TODO: find better alternatives? | |
# Do no fail the workflow on linter error at initial phase, will update this workflow later | |
run: docker run --rm -i hadolint/hadolint < Dockerfile || true |