We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f56192c commit 8bce0e1Copy full SHA for 8bce0e1
.github/workflows/test.yml
@@ -26,13 +26,13 @@ jobs:
26
python-version: '3.8'
27
28
- name: Install pre-commit framework
29
- run: curl https://pre-commit.com/install-local.py | python -
+ run: python -m pip install pre-commit
30
31
- name: Install dotnet-format
32
run: dotnet tool install -g dotnet-format
33
34
- name: Run pre-commit
35
- run: ~/bin/pre-commit run --show-diff-on-failure --color=always --all-files
+ run: python -m pre-commit run --show-diff-on-failure --color=always --all-files
36
37
build-and-test:
38
name: Build and test ${{ matrix.os }}
0 commit comments