-
Notifications
You must be signed in to change notification settings - Fork 2k
52 lines (43 loc) · 1.22 KB
/
macos-inso-compatibility.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
48
49
50
51
name: Inso CLI macos compatibility
on:
merge_group:
workflow_dispatch:
push:
branches:
- develop
pull_request:
types:
- opened
- synchronize
jobs:
build:
if: always()
runs-on: ${{ matrix.os }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{matrix.os}}-${{matrix.url}}
strategy:
matrix:
os: [macos-12, macos-13, macos-14, macos-11]
url: [
'v9.3.0-alpha.0-experimental/inso-macos-13-9.3.0-alpha.0.zip',
'v9.3.0-alpha.0-experimental/inso-macos-latest-9.3.0-alpha.0.zip',
'lib%409.2.0/inso-macos-9.2.0.zip'
]
steps:
- name: Checkout repository
uses: actions/checkout@v4
continue-on-error: true
- name: Download Inso ZIP file
run: curl -L -o inso.zip https://github.com/Kong/insomnia/releases/download/${{ matrix.url }}
continue-on-error: true
- name: Unzip Inso
run: unzip inso.zip -d inso
continue-on-error: true
- name: List files to verify unzip
run: ls inso
continue-on-error: true
- name: Make Inso executable
run: chmod +x inso/inso
continue-on-error: true
- name: Run Inso
run: ./inso/inso --version