Skip to content

Commit 6cadca6

Browse files
Moved .editorConfig to avoid duplicated version in actual project root (UnityTechnologies#77)
1 parent a056f34 commit 6cadca6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/linter.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ jobs:
1111
name: Lint code base
1212
# Set the type of machine to run on
1313
runs-on: ubuntu-latest
14-
14+
env:
15+
working-directory : ./UOP1_Project/
16+
1517
steps:
1618
- uses: actions/checkout@v2
1719
- run: git pull
1820
- run: dotnet tool install -g dotnet-format
19-
- run: dotnet-format -f UOP1_Project/Assets/Scripts -v d
21+
- name: format
22+
run: dotnet-format -f Assets/Scripts -v d
23+
working-directory: ${{env.working-directory}}
2024
- name: Commit changes
2125
uses: EndBug/add-and-commit@v5
2226
with:
File renamed without changes.

0 commit comments

Comments
 (0)