From 847918f6073ea44816c8d760eb4aa11be7cdd695 Mon Sep 17 00:00:00 2001 From: Tizian Maxime Weigt Date: Sun, 27 Apr 2025 14:53:55 +0200 Subject: [PATCH] Refactor test workflow to include checkout step and echo completion message --- .gitea/workflows/test.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 4959554..da999ae 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -6,5 +6,7 @@ jobs: build: runs-on: alpine-latest steps: - - name: ping google.com - run: ping6 -c 3 google.com || echo "IPv6 not working on runner" + - name: Checkout + uses: actions/checkout@v4 + - name: echo "Done" + run: echo "Done" \ No newline at end of file