الملفات
Complete-CI-CD-Project-pipe…/.github/workflows/cicd.yaml
ahmedgamalyousef 862f966c09
فشلت بعض الفحوصات
CI/CD Pipeline - Weather App 🌤️ / test (push) Failing after 57s
CI/CD Pipeline - Weather App 🌤️ / build_and_push_image (push) Has been skipped
CI/CD Pipeline - Weather App 🌤️ / deploy (push) Has been skipped
Updating workflow
2025-10-14 19:57:29 +03:00

85 أسطر
2.3 KiB
YAML

name: CI/CD Pipeline - Weather App 🌤️
on:
push:
branches: [ main ]
pull_request:
jobs:
# -----------------------------
# 🧪 1. Test job
# -----------------------------
test:
steps:
- name: 🧾 Checkout Code
uses: actions/checkout@v5.0.0
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: 📦 Install Dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install pytest pytest-cov flake8
- name: 🔍 Run Code Linting
run: |
source venv/bin/activate
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: 🧪 Run Unit Tests
run: |
source venv/bin/activate
pytest --maxfail=1 --disable-warnings -q
- name: 📊 Generate Test Coverage Report
run: |
source venv/bin/activate
pytest --cov=app --cov-report=term-missing
# -----------------------------
# 🐳 2. Build and Push Docker Image
# -----------------------------
build_and_push_image:
runs-on: ubuntu-latest
needs: test
steps:
- name: 📦 Checkout Code
uses: actions/checkout@v5.0.0
- name: 🔐 Login to DockerHub
uses: docker/login-action@v3.6.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 🐳 Build and Push Docker Image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ahmedgamalyousef/firstcicd:latest
# -----------------------------
# ☁️ 3. Deploy to Ghaymah Cloud
# -----------------------------
deploy:
runs-on: ubuntu-latest
needs: build_and_push_image
steps:
- name: 📦 Checkout Code
uses: actions/checkout@v5.0.0
- name: 🌩️ Install Ghaymah CLI
run: curl -sSl https://cli.ghaymah.systems/install.sh | bash
- name: 🔐 Login to Ghaymah Cloud
run: $HOME/ghaymah/bin/gy auth login --email "${{ secrets.GHAYMAH_EMAIL }}" --password "${{ secrets.GHAYMAH_PW }}"
- name: 🚀 Deploy Application
run: $HOME/ghaymah/bin/gy resource app launch