Skip to content

Commit c10be87

Browse files
authored
keep pre-commit hooks up to date
1 parent d1d07cd commit c10be87

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/dependencies.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,21 @@ jobs:
1515
with:
1616
ref: development
1717

18-
- uses: actions/setup-python@v4
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
1920
with:
2021
python-version: '3.10'
2122
cache: pip
22-
- run: |
23-
pip install pip-tools
24-
pip-compile --upgrade
2523

24+
- name: Install pre-commit and pip-tools
25+
run: pip install pre-commit pip-tools
26+
27+
- name: Run pre-commit autoupdate
28+
run: pre-commit autoupdate
29+
30+
- name: Run pip-compile
31+
run: pip-compile --upgrade
32+
2633
- name: Create Pull Request
2734
uses: peter-evans/create-pull-request@v4
2835
with:

0 commit comments

Comments
 (0)