test IV
This commit is contained in:
parent
c722bd4910
commit
cadb3042ff
20
.github/workflows/tests.yml
vendored
20
.github/workflows/tests.yml
vendored
@ -29,11 +29,15 @@ jobs:
|
||||
pip install wheel
|
||||
pip install -e .
|
||||
|
||||
- name: Save Workspace
|
||||
- name: Create Archive
|
||||
run: |
|
||||
tar -czf workspace.tar.gz venv
|
||||
|
||||
- name: Save Workspace Archive
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: workspace
|
||||
path: venv
|
||||
path: workspace.tar.gz
|
||||
|
||||
test:
|
||||
name: Run Tests
|
||||
@ -46,6 +50,10 @@ jobs:
|
||||
with:
|
||||
name: workspace
|
||||
|
||||
- name: Extract Workspace Archive
|
||||
run: |
|
||||
tar -xzf workspace.tar.gz
|
||||
|
||||
- name: Run Tests
|
||||
env:
|
||||
OPENWEATHERMAP_API_KEY: ${{ secrets.OPENWEATHERMAP_API_KEY }}
|
||||
@ -69,6 +77,10 @@ jobs:
|
||||
with:
|
||||
name: workspace
|
||||
|
||||
- name: Extract Workspace Archive
|
||||
run: |
|
||||
tar -xzf workspace.tar.gz
|
||||
|
||||
- name: Generate Docs
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
@ -86,6 +98,10 @@ jobs:
|
||||
with:
|
||||
name: workspace
|
||||
|
||||
- name: Extract Workspace Archive
|
||||
run: |
|
||||
tar -xzf workspace.tar.gz
|
||||
|
||||
- name: Publish Docs
|
||||
run: |
|
||||
source venv/bin/activate
|
||||
|
Loading…
Reference in New Issue
Block a user