Skip to content

Commit

Permalink
FIx codespell check
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Sep 27, 2024
1 parent b91c432 commit e01a913
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Install prerequisites
run: pip install codespell
- name: Set up Python and create a virtual environment
run: |
python3 -m venv venv
source venv/bin/activate
pip install codespell
- name: Spell check
run: codespell --config=./.codespell/.codespellrc
run: venv/bin/codespell --config=./.codespell/.codespellrc

0 comments on commit e01a913

Please sign in to comment.