-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 1.05 KB
/
setup-jikkou-wrapper.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: 'Setup Jikkou Wrapper'
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash
jobs:
jikkou-wrapper:
name: 'Jikkou Versions'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
jikkou-versions: [latest]
steps:
- name: Checkout GitHub repository
uses: actions/checkout@v4
with:
clean: true
- name: Setup Jikkou - ${{ matrix['jikkou-versions'] }}
uses: ./
with:
jikkou_version: ${{ matrix['jikkou-versions'] }}
jikkou_config: ./config/jikkouconfig.json
jikkou_wrapper: true
- name: Validate Jikkou Version - ${{ matrix['jikkou-versions'] }}
id: version
run: jikkou -V | grep 'Jikkou version'
- name: 'Output stdout'
run: echo "${{ steps.version.outputs.stdout }}"
- name: 'Output stderr'
run: echo "${{ steps.version.outputs.stderr }}"
- name: 'Output exitcode'
run: echo "${{ steps.version.outputs.exitcode }}"