File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,24 @@ jobs:
273
273
CI : " true"
274
274
DBMS : " postgresql"
275
275
276
+ jbang :
277
+ name : JBang
278
+ runs-on : ubuntu-latest
279
+ steps :
280
+ - name : Checkout source
281
+ uses : actions/checkout@v4
282
+ with :
283
+ submodules : ' false'
284
+ show-progress : ' false'
285
+ - name : Install JBang
286
+ run : |
287
+ curl -Ls https://sh.jbang.dev | bash -s - app setup
288
+ echo "$HOME/.jbang/bin" >> $GITHUB_PATH
289
+ - run : jbang build .jbang/CheckoutPR.java
290
+ - run : jbang build .jbang/CloneJabRef.java
291
+ - run : jbang build .jbang/JabKitLauncher.java
292
+ - run : jbang build .jbang/JabSrvLauncher.java
293
+
276
294
codecoverage :
277
295
if : false
278
296
name : Code coverage
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "extends" : [
4
+ " config:base"
5
+ ],
6
+ "regexManagers" : [
7
+ {
8
+ "managerFilePatterns" : " .jbang/*.java" ,
9
+ "matchStrings" : [
10
+ " //DEPS (?<depName>\\ S+):(\\ ${\\ S+:(?<currentValue>[^ }]+)})" ,
11
+ " //DEPS ((?<depName>\\ S+:\\ S+):(?<currentValue>[^$]\\ S+))(\\ @\\ w+)?"
12
+ ],
13
+ "datasourceTemplate" : " maven"
14
+ }
15
+ ]
16
+ }
You can’t perform that action at this time.
0 commit comments