We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e71fc8 commit 75a2abbCopy full SHA for 75a2abb
.github/workflows/Shellcheck.yaml
@@ -0,0 +1,27 @@
1
+name: ADconnection.sh Test Pipeline
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ test-adconnection:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
17
+ - name: Install shellcheck
18
+ run: sudo apt-get update && sudo apt-get install -y shellcheck
19
20
+ - name: Shellcheck lint ADconnection.sh
21
+ run: shellcheck ./ADconnection.sh
22
23
+ - name: Bash syntax check ADconnection.sh
24
+ run: bash -n ./ADconnection.sh
25
26
+ - name: Run ADconnection.sh --help
27
+ run: bash ./ADconnection.sh --help
0 commit comments