Browse Source
Merge pull request #3109 from acmesh-official/dev
Merge pull request #3109 from acmesh-official/dev
Support github actionspull/3223/head
neil
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 1104 additions and 1079 deletions
-
16.github/workflows/shellcheck.yml
-
5README.md
-
1671acme.sh
-
4deploy/exim4.sh
-
10deploy/ssh.sh
-
6deploy/vsftpd.sh
-
2dnsapi/dns_arvan.sh
-
18dnsapi/dns_aws.sh
-
2dnsapi/dns_azure.sh
-
6dnsapi/dns_conoha.sh
-
28dnsapi/dns_cyon.sh
-
34dnsapi/dns_da.sh
-
24dnsapi/dns_do.sh
-
2dnsapi/dns_easydns.sh
-
18dnsapi/dns_freedns.sh
-
16dnsapi/dns_gandi_livedns.sh
-
12dnsapi/dns_gcloud.sh
-
4dnsapi/dns_he.sh
-
8dnsapi/dns_hetzner.sh
-
74dnsapi/dns_ispconfig.sh
-
2dnsapi/dns_joker.sh
-
8dnsapi/dns_kappernet.sh
-
2dnsapi/dns_netlify.sh
-
4dnsapi/dns_one.sh
-
68dnsapi/dns_ovh.sh
-
41dnsapi/dns_pleskxml.sh
-
10dnsapi/dns_regru.sh
-
56notify/mail.sh
-
18notify/teams.sh
-
14notify/xmpp.sh
@ -0,0 +1,16 @@ |
|||
name: shellcheck |
|||
on: [push, pull_request] |
|||
|
|||
jobs: |
|||
formatCheck: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- uses: actions/checkout@v2 |
|||
- name: Install Shellcheck |
|||
run: sudo apt-get install -y shellcheck |
|||
- name: DoShellcheck |
|||
run: shellcheck -V && shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" |
|||
- name: Install shfmt |
|||
run: curl -sSL https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64 -o ~/shfmt && chmod +x ~/shfmt |
|||
- name: shfmt |
|||
run: ~/shfmt -l -w -i 2 . ; git diff --exit-code && echo "shfmt OK" |
1671
acme.sh
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save
Reference in new issue