mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 18:53:58 +01:00
setting enviornmental variables properly
This commit is contained in:
parent
eebf72aea6
commit
162e128366
8
.github/workflows/tests.yml
vendored
8
.github/workflows/tests.yml
vendored
|
@ -5,7 +5,10 @@ on: [pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
MONGO_URI: ${{ secrets.MONGO_URI }}
|
||||||
|
NOVA_KEY: ${{ secrets.NOVA_KEY }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -21,9 +24,6 @@ jobs:
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
- name: Start API server
|
- name: Start API server
|
||||||
env:
|
|
||||||
MONGO_URI: ${{ secrets.MONGO_URI }}
|
|
||||||
NOVA_KEY: letstrythis
|
|
||||||
run: |
|
run: |
|
||||||
python run
|
python run
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue