Doing stuff.
Some checks failed
Tests / Backend Tests (Python 3.13 + uv) (push) Failing after 6m24s
Tests / Frontend Tests (TypeScript + Vue + Yarn Berry) (push) Failing after 6m47s

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-23 16:24:25 -04:00
parent d799c31f73
commit 01d7761016

View File

@@ -46,6 +46,11 @@ jobs:
if ! git clone --depth 1 http://dogar.darkhelm.org/DarkHelm.org/plex-playlist.git . 2>/dev/null; then
echo "Both HTTPS and HTTP failed. Repository might need manual setup."
echo "Creating minimal repository structure for testing..."
# Configure git user for commits
git config --global user.email "ci@gitea-actions.local"
git config --global user.name "Gitea Actions CI"
# Create basic structure so tests can at least try to run
mkdir -p backend/src/backend backend/tests frontend/src
echo "# Plex Playlist" > README.md
@@ -180,6 +185,11 @@ jobs:
if ! git clone --depth 1 http://dogar.darkhelm.org/DarkHelm.org/plex-playlist.git . 2>/dev/null; then
echo "Both HTTPS and HTTP failed. Repository might need manual setup."
echo "Creating minimal repository structure for testing..."
# Configure git user for commits
git config --global user.email "ci@gitea-actions.local"
git config --global user.name "Gitea Actions CI"
# Create basic structure so tests can at least try to run
mkdir -p backend/src/backend backend/tests frontend/src
echo "# Plex Playlist" > README.md