Skip to content

Commit 83cf803

Browse files
committedJun 18, 2024
Split tests into two
1 parent 97951eb commit 83cf803

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed
 

‎.github/workflows/main.yml

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,40 @@
11
on: [push]
22

33
jobs:
4-
plugin_json:
4+
minimal:
55
runs-on: ubuntu-latest
6-
name: Test some plugin.json files
6+
name: Minimal plugin.json
77
steps:
88
- name: Checkout
99
uses: actions/checkout@v4
1010

1111
- name: Test minimal.json
12-
id: minimal_json
12+
id: plugin
1313
uses: ./
1414
with:
1515
file: test/minimal.json
1616

17-
- name: Print minimal.json info
17+
- name: Plugin info
1818
shell: bash
1919
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}}"
2222
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
2532
uses: ./
2633
with:
2734
file: test/full.json
2835

29-
- name: Print full.json info
36+
- name: Plugin info
3037
shell: bash
3138
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}}"

0 commit comments

Comments
 (0)