resolve install problem

This commit is contained in:
lamya1baidouri 2025-02-03 10:00:47 +01:00
parent 78c607cd86
commit 2bb5ec9967

View file

@ -24,6 +24,11 @@ jobs:
sudo apt update
sudo apt install -y python3-dev libffi-dev libssl-dev python3-yaml
- name: Install Cython and PyYAML (Fix build)
run: |
pip install --no-cache-dir cython # Fixes "cython_sources" error
pip install --no-cache-dir "pyyaml==5.4.1" # Force compatible pre-built version
- name: Install Docker Compose
run: |
pip install --no-cache-dir docker-compose
@ -35,14 +40,14 @@ jobs:
- name: Run tests
run: |
echo "Running tests..."
# Ajouter ici les commandes pour exécuter les tests
# Add test commands here
- name: Deploy application
run: |
echo "Deploying application..."
# Ajouter ici les commandes de déploiement
# Add deployment commands here
- name: Monitoring setup
run: |
echo "Setting up monitoring..."
# Ajouter ici les outils de monitoring (ex: Prometheus, Grafana)
# Add monitoring tools here (e.g., Prometheus, Grafana)