fix: actions test database and migrate #3
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: 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 GitHub Actions / Energy CIInvalid workflow file
|
||
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 |