Skip to content

Commit ca08af1

Browse files
committed
linting updates
1 parent d367c4a commit ca08af1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/dotnet-format.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,10 @@ jobs:
2929

3030
- name: dotnet format all
3131
run: |
32-
dotnet restore
33-
dotnet format --verify-no-changes --verbosity diagnostic
32+
projects=$(find . -name "*.csproj")
33+
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
uses: py-actions/flake8@v2
2828
with:
2929
max-line-length: 88
30-
path: src
30+
path: python
3131
plugins: flake8-black

0 commit comments

Comments
 (0)