-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b36f011
commit 5ece7f2
Showing
1 changed file
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,14 +54,29 @@ jobs: | |
- name: diffctx | ||
uses: williamfzc/[email protected] | ||
with: | ||
# currently we support: golang/python | ||
# currently we officially support: golang/python | ||
lang: "golang" | ||
``` | ||
### Done! | ||
You can create a new PullRequest for test. | ||
### What about other languages? | ||
Currently, diffctx can also support java/kotlin. | ||
But you have to generate LSIF file ([this link](https://github.com/williamfzc/diffctx/blob/main/index.py) might help) by yourself because of the complexity of the compilation process. | ||
```yml | ||
- name: diffctx | ||
uses: williamfzc/[email protected] | ||
with: | ||
lang: "java" | ||
lsif_file: "./dump.lsif" | ||
``` | ||
Help wanted :) | ||
### Still have a problem? | ||
A real example can be found in: https://github.com/williamfzc/srctx/tree/test_diffctx | ||
|