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.
1 parent d367c4a commit ca08af1Copy full SHA for ca08af1
.github/workflows/dotnet-format.yaml
@@ -29,5 +29,10 @@ jobs:
29
30
- name: dotnet format all
31
run: |
32
- dotnet restore
33
- dotnet format --verify-no-changes --verbosity diagnostic
+ projects=$(find . -name "*.csproj")
+ echo "[INFO] projects are: $projects"
34
+ for project in $projects; do
35
+ cd $project
36
+ dotnet restore
37
+ dotnet format --verify-no-changes --verbosity diagnostic
38
+ done
.github/workflows/flake8.yaml
@@ -27,5 +27,5 @@ jobs:
27
uses: py-actions/flake8@v2
28
with:
max-line-length: 88
- path: src
+ path: python
plugins: flake8-black
0 commit comments