Skip to content

Commit

Permalink
new CI workflow: check installation scripts (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
howieyuen authored Feb 28, 2023
1 parent 8f74d20 commit 70d88c5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: installation check
on:
push:
branches:
- main
pull_request:
branches:
- 'main'
jobs:
check-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Check Install Script
run: static/scripts/install.sh
- name: Check Kusion Run
run: kusion version
shell: bash -leo pipefail {0}
check-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check Install Script
run: static/scripts/install.sh
- name: Check Kusion Run
run: kusion version
shell: bash -ieo pipefail {0}
check-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Check Install Script
run: static/scripts/install.ps1
- name: Check Kusion Run
run: C:\kusion\kusion.exe version

0 comments on commit 70d88c5

Please sign in to comment.