We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee2430 commit d030fa7Copy full SHA for d030fa7
1 file changed
.github/workflows/main.yml
@@ -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