Browse Source
Merge pull request #3108 from acmesh-official/ga
Merge pull request #3108 from acmesh-official/ga
support Github Actionspull/3109/head
neil
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 1061 additions and 1042 deletions
-
16.github/workflows/ci.yml
-
10acme.sh
-
4deploy/exim4.sh
-
10deploy/ssh.sh
-
6deploy/vsftpd.sh
-
12dnsapi/dns_aws.sh
-
2dnsapi/dns_azure.sh
-
6dnsapi/dns_conoha.sh
-
28dnsapi/dns_cyon.sh
-
24dnsapi/dns_do.sh
-
18dnsapi/dns_freedns.sh
-
16dnsapi/dns_gandi_livedns.sh
-
12dnsapi/dns_gcloud.sh
-
4dnsapi/dns_he.sh
-
8dnsapi/dns_hetzner.sh
-
2dnsapi/dns_netlify.sh
-
39dnsapi/dns_pleskxml.sh
@ -0,0 +1,16 @@ |
|||
name: CI |
|||
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" |
Write
Preview
Loading…
Cancel
Save
Reference in new issue