Skip to content

fix: actions test database and migrate #3

fix: actions test database and migrate

fix: actions test database and migrate #3

Workflow file for this run

name: Energy CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: energy
ports:
- 5432:5432
options: >-
--health-cmd="pg_isready -U test_user"
--health-interval=10s
--health-timeout=5s
--health-retries=5
strategy:
max-parallel: 4
matrix:
python-version: [ 3.11 ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Migrations
env:
DB_NAME:energy

Check failure on line 46 in .github/workflows/django.yml

View workflow run for this annotation

GitHub Actions / Energy CI

Invalid workflow file

The workflow is not valid. .github/workflows/django.yml (Line: 46, Col: 11): Unexpected value 'DB_NAME:energy DB_USER:postgres DB_PASSWORD:postgres DB_HOST:localhost' .github/workflows/django.yml (Line: 54, Col: 11): Unexpected value 'DB_NAME:energy DB_USER:postgres DB_PASSWORD:postgres DB_HOST:localhost'
DB_USER:postgres
DB_PASSWORD:postgres
DB_HOST:localhost
run: |
python manage.py migrate
- name: Run Tests
env:
DB_NAME:energy
DB_USER:postgres
DB_PASSWORD:postgres
DB_HOST:localhost
run: |
python manage.py test