⚙️ Updates resolution variables #149
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: CI | |
on: [push] | |
jobs: | |
lint_shellscripts: | |
runs-on: [ubuntu-latest] | |
container: | |
image: koalaman/shellcheck-alpine:latest | |
options: --entrypoint /bin/sh | |
steps: | |
- uses: actions/checkout@v1 | |
- run: | | |
#!/usr/bin/env sh | |
set -ex | |
shellcheck --version | |
shellcheck ./home/.bash_* --exclude=SC1090 | |
# shellcheck ./home/*.sh | |
# lint_dockerfile: | |
# runs-on: [ubuntu-latest] | |
# container: | |
# image: hadolint/hadolint:latest-debian | |
# options: --entrypoint /bin/sh | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - run: | | |
# #!/usr/bin/env sh | |
# set -ex | |
# hadolint --version | |
# hadolint Dockerfile |