Skip to content

Commit a09af38

Browse files
committed
add taskfile
1 parent 44c638f commit a09af38

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

Taskfile.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
version: "3"
2+
3+
vars: {}
4+
5+
tasks:
6+
setup:
7+
cmds:
8+
- task: install
9+
10+
install:
11+
cmds: []
12+
13+
build:
14+
cmds: []
15+
16+
start:
17+
cmds: []
18+
19+
test:
20+
cmds: []
21+
22+
lint:
23+
cmds: []
24+
25+
fmt:
26+
cmds: []
27+
28+
fix:
29+
cmds:
30+
- task: fmt
31+
32+
devcontainer:onCreate:
33+
cmds: []
34+
35+
devcontainer:postAttach:
36+
cmds: []
37+
38+
devcontainer:postCreate:
39+
cmds:
40+
- task: install
41+
42+
devcontainer:postStart:
43+
cmds: []
44+
45+
devcontainer:updateContent:
46+
cmds: []

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ under the License.
286286
<exclude>**/.*/**</exclude>
287287
<exclude>**/*.prefs</exclude>
288288
<exclude>**/*.log</exclude>
289+
<exclude>Taskfile.yml</exclude>
289290
<!-- Administrative files in the main trunk. -->
290291
<exclude>**/README.md</exclude>
291292
<exclude>**/README.zh.md</exclude>

0 commit comments

Comments
 (0)