Skip to content

Commit

Permalink
Install dependencies for pre-commit workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell committed Oct 6, 2023
1 parent 0d00968 commit a48ca40
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]
with:
submodules: true

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10

- name: Install
run: |
pip install --upgrade pip
pip install -e '.[testing]'
- name: Run pre-commit
uses: pre-commit/[email protected]

0 comments on commit a48ca40

Please sign in to comment.