We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dotnet restore
1 parent 794c5d9 commit c5a52a5Copy full SHA for c5a52a5
.github/workflows/format.yml
@@ -36,6 +36,8 @@ jobs:
36
# Install pre-commit
37
python3 -m pip install pre-commit
38
pre-commit install
39
+ # Restore
40
+ dotnet restore
41
# Format files
42
FILES=$(git diff --name-only HEAD origin/$GITHUB_BASE_REF | tr '\n' ' ')
43
echo $FILES
.github/workflows/pre-commit.yml
@@ -10,6 +10,8 @@ jobs:
10
steps:
11
- uses: actions/checkout@v4
12
- uses: actions/setup-python@v3
13
+ - name: Init
14
+ run: dotnet restore
15
- uses: pre-commit/[email protected]
16
with:
17
extra_args: --all-files --hook-stage=manual
0 commit comments