-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
neil
committed
Dec 24, 2023
1 parent
3b78071
commit eada09c
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: ZeroSSL | ||
on: | ||
schedule: | ||
- cron: '10 9 * * *' | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- '*' | ||
paths: | ||
- '**.sh' | ||
- '.github/workflows/ZeroSSL.yml' | ||
pull_request: | ||
branches: | ||
- '*' | ||
paths: | ||
- '**.sh' | ||
- '.github/workflows/ZeroSSL.yml' | ||
|
||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
|
||
|
||
jobs: | ||
ZeroSSL: | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_ACME_Server: "ZeroSSL.com" | ||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" | ||
CA: "ZeroSSL RSA Domain Secure Site CA" | ||
CA_EMAIL: "[email protected]" | ||
TEST_PREFERRED_CHAIN: "" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Clone acmetest | ||
run: cd .. && git clone --depth=1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ | ||
- name: Run Test | ||
run: | | ||
sudo apt-get update && apt-get install -y curl socat; | | ||
cd ../acmetest && ./letest.sh | ||
|
||
|