Option to override name #8384
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ma Cantine CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Setup PostgreSQL | |
uses: Harmon758/postgresql-action@v1.0.0 | |
with: | |
postgresql db: postgres | |
postgresql user: postgres | |
postgresql password: postgres | |
- name: Setup Redis | |
uses: zhulik/redis-action@1.1.0 | |
with: | |
redis version: "5" | |
number of databases: 5 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install Python dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Test Django | |
env: | |
DEBUG: True | |
SECRET: test | |
ALLOWED_HOSTS: localhost | |
DB_USER: postgres | |
DB_PASSWORD: postgres | |
DB_HOST: localhost | |
DB_PORT: 5432 | |
DB_NAME: postgres | |
HOSTNAME: localhost | |
STATICFILES_STORAGE: django.contrib.staticfiles.storage.StaticFilesStorage | |
DEFAULT_FILE_STORAGE: django.core.files.storage.FileSystemStorage | |
EMAIL_BACKEND: django.core.mail.backends.console.EmailBackend | |
DEFAULT_FROM_EMAIL: contact@example.com | |
CONTACT_EMAIL: contact@example.com | |
REDIS_URL: redis://localhost:6379/0 | |
SIRET_API_KEY: fake | |
SIRET_API_SECRET: fake | |
run: | | |
python3 manage.py test | |
- name: Test Vue | |
working-directory: ./frontend | |
run: | | |
npm install | |
npm run build --if-present | |
npm run test |