Skip to content

Commit

Permalink
Tidy names in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nmenezes0 committed Mar 18, 2024
1 parent 6084ebf commit edef817
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
python -m pip install --upgrade poetry
poetry install --with development
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '14'

- name: Install npm dependencies
run: npm install

- name: Check migrations
run: |
poetry run python manage.py migrate
Expand All @@ -49,17 +57,9 @@ jobs:
DJANGO_SECRET_KEY: dummy-key
DATABASE_URL: psql://pguser:pgpass@postgres:5432/consultations_test

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: pytest
run:
poetry run pytest
make test
env:
DATABASE_URL: psql://pguser:pgpass@postgres:5432/consultations_test

Expand Down

0 comments on commit edef817

Please sign in to comment.