diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 92c3560..0e57198 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -16,6 +16,13 @@ jobs: image: debian:trixie steps: + - name: Install basic tools + run: | + echo "Installing basic tools in Debian container..." + apt-get update + apt-get install -y git curl wget ca-certificates + echo "Basic tools installed successfully" + - name: Checkout code run: | echo "Cloning repository..."