Skip to content

Commit

Permalink
Merge branch 'main' into experimental/finalest-final-merge-maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
mtoof authored Aug 27, 2024
2 parents c597180 + 1c4f664 commit c957860
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 17 deletions.
72 changes: 56 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,6 @@ jobs:
with:
python-version: 3.11 # Use Python version 3.11

# Cache dependencies
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install build dependencies
- name: Install build dependencies
run: |
Expand All @@ -41,12 +32,51 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt # Install dependencies from requirements.txt

test:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Run test suite
- name: Run tests
run: pytest # Execute tests using pytest

security:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Run security checks
- name: Run security checks
Expand All @@ -59,11 +89,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Build the Docker image
- name: Build Docker image
run: docker build -t transcendence .
run: docker build -t transcendence .

deploy:
needs: build
Expand All @@ -84,9 +129,4 @@ jobs:
# Conditional deployment based on branch
- name: Deploy to server
if: github.ref == 'refs/heads/main'
run: ssh user@server "docker pull ${DOCKER_HUB_USERNAME}/transcendence:latest && docker-compose up --build -d"

- name: Deploy to development server
if: github.ref == 'refs/heads/develop'
run: ssh user@dev-server "docker pull ${DOCKER_HUB_USERNAME}/transcendence:latest && docker-compose up --build -d"
6 changes: 5 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ services:
image: redis:alpine
networks:
- transcendence_network
# command: ["CMD", "redis-cli", "--raw", "incr", "ping"]
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 30s
timeout: 10s
retries: 5

user-service:
container_name: user-service
Expand Down

0 comments on commit c957860

Please sign in to comment.