feat: migrate to 4-job CI pipeline with tests #3

Merged
jcabillot merged 9 commits from feat/gitea-actions-v2 into master 2026-06-08 18:46:53 -04:00
Showing only changes of commit a578c1bba1 - Show all commits
+1 -1
View File
@@ -55,7 +55,7 @@ docker run -d --name "$CONTAINER_NAME" --link "$DB_CONTAINER:db" -p 8080:8080 "$
echo "Waiting for TTRSS to be ready..."
READY=false
for i in $(seq 1 60); do
if curl -sf -o /dev/null "$BASE_URL/"; then
if curl -s -o /dev/null "$BASE_URL/"; then
echo "TTRSS ready (attempt $i)"
READY=true
break