Skip to content

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.12 in /frontend #141

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.12 in /frontend

chore(deps-dev)(deps-dev): bump vite from 6.3.5 to 7.1.12 in /frontend #141

Workflow file for this run

name: Pytest
permissions:
contents: read
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/src/requirements.txt
pip install -r backend/src/requirements-dev.txt
- name: Test with Pytest
run: |
cat <<EOF > backend/src/.env
DOMAIN=localhost
FRONTEND_HOST=http://localhost:5173
ENVIRONMENT=local
PROJECT_NAME="Full Stack FastAPI Test Project"
STACK_NAME=full-stack-fastapi-test-project
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173"
SECRET_KEY=test_secret_key_for_ci_do_not_use_in_prod
FIRST_SUPERUSER=admin@example.com
FIRST_SUPERUSER_PASSWORD=test_password
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
EMAILS_FROM_EMAIL=
SMTP_TLS=True
SMTP_SSL=False
SMTP_PORT=587
POSTGRES_SERVER=db
POSTGRES_PORT=5432
POSTGRES_SOCKET=
POSTGRES_DB=testdb
POSTGRES_USER=testuser
POSTGRES_PASSWORD=testpassword
EOF
pytest --config-file=backend/pyproject.toml backend/tests