Skip to content

Commit d030fa7

Browse files
Create main.yml
1 parent 2ee2430 commit d030fa7

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Validate Shell Script
2+
3+
on: [push]
4+
5+
jobs:
6+
validate:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Validate Shell Script
11+
run: |
12+
# Install shellcheck
13+
sudo apt-get update
14+
sudo apt-get install -y shellcheck
15+
# Run shellcheck on the script
16+
shellcheck environment_setup.sh
17+
shellcheck performance-monitoring.sh

0 commit comments

Comments
 (0)