Skip to content

Commit

Permalink
ci: GitHub actions install dev dependencies for testing and doc publi…
Browse files Browse the repository at this point in the history
…shing
  • Loading branch information
nicholasyager committed Jun 8, 2023
1 parent 0cba503 commit 4e5aa48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry install
poetry install --with=dev
- name: Run tests with pytest
run: poetry run pytest
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry install
poetry install --with=dev
- name: Deploy to GitHub Pages
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry install
poetry install --with=dev
- name: Extract Major and Minor Version
run: |
Expand Down

0 comments on commit 4e5aa48

Please sign in to comment.