Skip to content

Commit

Permalink
fix optional install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Deko committed Apr 25, 2024
1 parent 5ad933c commit 6fe95a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install .[lint]
run: pip install .[dev]
- name: Build
run: pyinstaller Alune.spec
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install .[lint]
run: pip install .[dev]
- name: isort
run: isort --check .
- name: flake8
Expand Down

0 comments on commit 6fe95a5

Please sign in to comment.