Skip to content

PLT-977 added support for multi-domain certs by enabling dns validation for SANs #20

PLT-977 added support for multi-domain certs by enabling dns validation for SANs

PLT-977 added support for multi-domain certs by enabling dns validation for SANs #20

Workflow file for this run

---
name: test
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test
run: |
retry() {
for n in $(seq ${RETRIES}); do
echo "[${n}/${RETRIES}] ${*}";
if eval "${*}"; then
echo "[SUCC] ${n}/${RETRIES}";
return 0;
fi;
sleep 2;
echo "[FAIL] ${n}/${RETRIES}";
done;
return 1;
}
retry make test
env:
RETRIES: 20