Skip to content

Commit

Permalink
Merge pull request #105 from cmccandless/fix-deploy
Browse files Browse the repository at this point in the history
install dependencies for deploy workflow
  • Loading branch information
cmccandless committed Nov 30, 2020
2 parents 57dff3b + 1b036b7 commit f8f1215
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-to-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
with:
python-version: 3.8

- run: pip install -r requirements.txt

- name: Build
run: python generate.py

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
with:
python-version: 3.8

- run: pip install -r requirements.txt
- run: |
pip install -r requirements.txt
pip install pytest
- name: Install certificates for SSL verification
run: pip install -U requests[security]
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
flake8==3.8.4
httplib2>=0.18.0
jinja2==2.11.1
pytest>=4.3.1
strictyaml==1.1.1

0 comments on commit f8f1215

Please sign in to comment.