Skip to content

Commit

Permalink
add inso cli compatibility job
Browse files Browse the repository at this point in the history
  • Loading branch information
filfreire committed May 31, 2024
1 parent 41911f0 commit 4077cd4
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/macos-inso-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Inso CLI macos compatibility

on:
merge_group:
workflow_dispatch:
push:
branches:
- develop
pull_request:
types:
- opened
- synchronize

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-12, macos-13, macos-14, macos-11]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download Inso ZIP file
run: curl -L -o inso.zip https://github.com/Kong/insomnia/releases/download/lib%409.2.0/inso-macos-9.2.0.zip

- name: Unzip Inso
run: unzip inso.zip -d inso

- name: List files to verify unzip
run: ls inso

- name: Make Inso executable
run: chmod +x inso/inso

- name: Run Inso
run: ./inso/inso --version

0 comments on commit 4077cd4

Please sign in to comment.