Skip to content

Commit

Permalink
fix pip install -r
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Feb 22, 2024
1 parent 00ccd4e commit ff95a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/stage_call.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
python-version: "3.12"
cache: "pip" # caching pip dependencies
- run: pip install -r .
- run: pip install .
- id: stage
run: bakcoffice stage "${{ inputs.resource_id }}" "${{ inputs.package_url }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
python-version: "3.12"
cache: "pip" # caching pip dependencies
- run: pip install -r .[dev]
- run: pip install .[dev]
- run: black .
- run: pyright -p pyproject.toml
- run: pytest
Expand Down

0 comments on commit ff95a4e

Please sign in to comment.