nc not there, install first
Some checks failed
Run short tests / run-tests (push) Successful in 1m18s
Run nightly tests / build (push) Successful in 1m15s
Run nightly tests / nightly-tests-play (push) Failing after 38s

This commit is contained in:
2025-05-23 11:52:02 +02:00
parent a8ac1e359d
commit 482f23912c

View File

@@ -35,6 +35,8 @@ jobs:
echo 127.0.0.1 api.notion.com >> /etc/hosts echo 127.0.0.1 api.notion.com >> /etc/hosts
- name: Start a dummy server listening on 443 - name: Start a dummy server listening on 443
run: | run: |
apt update
apt install -y netcat
while true; do while true; do
echo "HTTP/1.1 200 OK\\n\\nHello from dummy server" | nc -l -p 443 -q 1 echo "HTTP/1.1 200 OK\\n\\nHello from dummy server" | nc -l -p 443 -q 1
done done