Skip to content

Commit

Permalink
fix problemMatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
analogrelay committed Dec 13, 2023
1 parent c778a38 commit 150b062
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/problemMatchers/dotnet-format.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"owner": "dotnet-format",
"pattern": [
{
"regexp": "^/project/(.+)\\((\\d+),\\s*(\\d+)\\):\\s*(error|warning)\\s*(CS\\d+):\\s*(.*)$",
"regexp": "^/project/(.+)\\((\\d+),\\s*(\\d+)\\):\\s*(error|warning)\\s*(.*):\\s*(.*)$",
"file": 1,
"line": 2,
"column": 3,
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/cache@v3
with:
path: Library
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
key: Library-${{ hashFiles('src/RGUnityBots/Assets/**', 'src/RGUnityBots/Packages/**', 'src/RGUnityBots/ProjectSettings/**') }}
restore-keys: |
Library-
Expand All @@ -33,4 +33,3 @@ jobs:
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
run:
script/fmt --docker --check

2 changes: 1 addition & 1 deletion .github/workflows/unity-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/cache@v3
with:
path: Library
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
key: Library-${{ hashFiles('src/RGUnityBots/Assets/**', 'src/RGUnityBots/Packages/**', 'src/RGUnityBots/ProjectSettings/**') }}
restore-keys: |
Library-
Expand Down

0 comments on commit 150b062

Please sign in to comment.