Skip to content

Commit d7dc3cf

Browse files
authored
fix: remove java from regression (#113)
* fix: remove java from regression * fix(regression): ignore version for go package
1 parent d83a028 commit d7dc3cf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/regression.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
#if: "!contains(github.event.pull_request.title, '[NO-REGRESSION-TEST]')"
1515
env:
16-
LANGS: "go rust python java typescript"
17-
DIFFJSON_IGNORE: " ['id'] ['Path'] "
16+
LANGS: "go rust python typescript"
17+
# ignore package version for Go e.g. 'a.b/c@506fb8ece467f3a71c29322169bef9b0bc92d554'
18+
DIFFJSON_IGNORE: >
19+
['id']
20+
['Path']
21+
['Modules']['a.b/c']['Dependencies']['a.b/c']
22+
['Modules']['a.b/c/cmdx']['Dependencies']['a.b/c/cmdx']
1823
steps:
1924
- name: Checkout pull request code
2025
uses: actions/checkout@v4

0 commit comments

Comments
 (0)