Fix Debian container: install basic tools before checkout
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m39s

- Add step to install git, curl, wget, ca-certificates in Debian container
- This fixes the 'git: not found' error from run #20
- Debian container needs basic tools installed before checkout step
- Install tools before attempting to clone repository

The Debian container is minimal and doesn't include git by default,
causing the checkout step to fail with 'command not found' error.
This commit is contained in:
robojerk 2025-09-07 17:36:43 -07:00
parent ddfb366cfe
commit 0b5ba9557e

View file

@ -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..."