File tree 1 file changed +18
-11
lines changed
1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change 1
1
on : [push]
2
2
3
3
jobs :
4
- plugin_json :
4
+ minimal :
5
5
runs-on : ubuntu-latest
6
- name : Test some plugin.json files
6
+ name : Minimal plugin.json
7
7
steps :
8
8
- name : Checkout
9
9
uses : actions/checkout@v4
10
10
11
11
- name : Test minimal.json
12
- id : minimal_json
12
+ id : plugin
13
13
uses : ./
14
14
with :
15
15
file : test/minimal.json
16
16
17
- - name : Print minimal.json info
17
+ - name : Plugin info
18
18
shell : bash
19
19
run : |
20
- echo "Codename: ${{steps.minimal_json .outputs.codename}}"
21
- echo "Version: ${{steps.minimal_json .outputs.version}}"
20
+ echo "Codename: ${{steps.plugin .outputs.codename}}"
21
+ echo "Version: ${{steps.plugin .outputs.version}}"
22
22
23
- - name : Test full.json
24
- id : full_json
23
+ full :
24
+ runs-on : ubuntu-latest
25
+ name : Full plugin.json
26
+ steps :
27
+ - name : Checkout
28
+ uses : actions/checkout@v4
29
+
30
+ - name : plugin.json
31
+ id : plugin
25
32
uses : ./
26
33
with :
27
34
file : test/full.json
28
35
29
- - name : Print full.json info
36
+ - name : Plugin info
30
37
shell : bash
31
38
run : |
32
- echo "Codename: ${{steps.full_json .outputs.codename}}"
33
- echo "Version: ${{steps.full_json .outputs.version}}"
39
+ echo "Codename: ${{steps.plugin .outputs.codename}}"
40
+ echo "Version: ${{steps.plugin .outputs.version}}"
You can’t perform that action at this time.
0 commit comments