Skip to content

Commit c817423

Browse files
committed
github workflows: fix shellcheck issues
1 parent 08a87dc commit c817423

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Print python version
1818
run: python -VV
1919
- name: Install dependencies
20-
run: pip install -e .[test]
20+
run: pip install -e '.[test]'
2121
- name: Test with pytest
2222
run: pytest --cov --cov-report=html
2323
- name: Generate coverage badge
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: actions/setup-python@v5
3636
- name: Install dependencies
37-
run: pip install -e .[test,hack]
37+
run: pip install -e '.[test,hack]'
3838
- name: Run mypy
3939
run: mypy
4040
docs:

0 commit comments

Comments
 (0)