Skip to content

Commit

Permalink
start to add some back-end details
Browse files Browse the repository at this point in the history
  • Loading branch information
helenb committed Nov 10, 2023
1 parent ca01b4b commit 5c0496b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI
on: [push]
jobs:
test:
test-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -20,3 +20,18 @@ jobs:
run: npm run test
- name: Compile static files
run: npm run build:prod
test-python:
runs-on: ubuntu-latest
env:
SECRET_KEY: testingsecretkey
SECURE_SSL_REDIRECT: false
ALLOWED_HOSTS: localhost
DATABASE_URL: postgres://postgres:postgres@localhost/postgres
BIRDBATH_REQUIRED: false

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8

0 comments on commit 5c0496b

Please sign in to comment.