Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created Workflow (shell-check.yml) #212

Merged
merged 6 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/shell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ShellCheck

on:
pull_request:
branches: ["main"]

jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master

3 changes: 2 additions & 1 deletion tools/generate-main-readme.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
pwd
# Todo: Auto update content of main README.md file
echo "hehe, to be implemented"
echo "hehe, to be implemented"
1 change: 1 addition & 0 deletions topics/ansible/with-docker/ansible-practice.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
echo ">>> Building ansible runner..."
docker build -t ansible-runner -f AnsibleEnv.dockerfile .
echo ">>> Execute ansible playbook (ping google)..."
Expand Down
1 change: 1 addition & 0 deletions topics/k8s/k8s-helloworld-cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
console_log() {
echo ">>> [Kubernetes] $1"
}
Expand Down
Loading