feat: add CI pipeline

This commit is contained in:
2025-11-01 18:07:57 +01:00
parent 504dc8e2b0
commit 053a9988a8

56
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,56 @@
name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m pytest tests/ -v
- name: Run linting
run: |
python -m flake8 web/ tests/ --max-line-length=120
- name: Build Docker image
run: |
docker build -t jobs-app .
- name: Run container tests
run: |
docker run --rm jobs-app python -m pytest tests/ -v
deploy:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deploy to production
run: |
echo "Deploying to production..."
# Add your deployment commands here
# For example: docker-compose up -d