Skip to content

Commit

Permalink
Fix: CI の実装ミスを修正
Browse files Browse the repository at this point in the history
Windows では taskipy 管理の開発コマンドは動作しないことを失念していた…
  • Loading branch information
tsukumijima committed Jul 29, 2024
1 parent 17d352b commit c1bd455
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip taskipy
task install
python -m pip install --upgrade pip
pip uninstall -y setuptools # <- magic!
pip install -e '.[dev,test]'
- name: Lint with pysen
run: |
task lint
pysen run lint
- name: Test with pytest
run: |
task test
pytest

0 comments on commit c1bd455

Please sign in to comment.