Skip to content

Commit

Permalink
Update pre-commit.yml
Browse files Browse the repository at this point in the history
Fix dependencies not installed
  • Loading branch information
PatrickBaus authored Dec 7, 2023
1 parent 64f4869 commit 0c0257a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
python-version: [ "3.10" ]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: Checkout source repository
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: pre-commit/[email protected]
- name: Install dependencies for testing
run: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test]
- name: Run pre-commit
uses: pre-commit/[email protected]

0 comments on commit 0c0257a

Please sign in to comment.