Skip to content

Commit

Permalink
ci: Add names to steps
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 12, 2023
1 parent a4d7944 commit 0b02997
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ jobs:
cache-dependency-path: '**/requirements*.txt'
- run: npm install
- run: pip install -r requirements.txt
- env:
- name: Build
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
shell: bash
run: |
npx webpack --mode production
env DJANGO_ENV=production python manage.py collectstatic --noinput -v2
python manage.py migrate
python manage.py loaddata tests/fixtures/a11y.json
- env:
- name: Serve
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
run: |
python manage.py runserver &
Expand Down

0 comments on commit 0b02997

Please sign in to comment.