Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
neil committed Dec 24, 2023
1 parent 3b78071 commit eada09c
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ZeroSSL.yml
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


0 comments on commit eada09c

Please sign in to comment.