From efea786a0b97e8842b2b7c8412908eb38de1a6a2 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sat, 21 Mar 2020 20:40:39 +0100 Subject: [PATCH] workflows: test --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3880141..cf8a325 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,8 +17,11 @@ jobs: uses: actions/checkout@v2 - name: Test run: | - ping -c 3 alpine - nc -z alpine 22 + apk -U add openssh + mkdir -p ~/.ssh + echo "${{secrets.SSH_PRIVATE_KEY}}" > ~/.ssh/id_rsa + chmod 400 ~/.ssh/id_rsa + ssh -o StrictHostKeyChecking=no alpine exit - name: Run uses: ./ with: