Skip to content

Commit

Permalink
Merge pull request #7 from theShinigami/workflow_fix
Browse files Browse the repository at this point in the history
Workflow fix
  • Loading branch information
sheenarbw authored Oct 17, 2024
2 parents 86f0dff + 03f0500 commit 15e1cbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ jobs:
run: |
pytest
env:
DB_USER: postgres
DB_PASSWORD: postgres
DB_NAME: djangocon_africa
DB_HOST: localhost
DJANGO_SETTINGS_MODULE: core.settings
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USER: postgres
DATABASE_PASSWORD: postgres
DATABASE_NAME: djangocon_africa
5 changes: 3 additions & 2 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- run: python -Im pip install --user ruff
- name: Install Ruff
run: pip install ruff

- name: Run Ruff
run: ruff --output-format=github .
run: ruff check --output-format=github .

0 comments on commit 15e1cbd

Please sign in to comment.