-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI check to test if flytectl can be installed
Signed-off-by: Eduardo Apolinario <[email protected]>
- Loading branch information
1 parent
b1d661a
commit 81dd7f1
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Flytectl-specific checks | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- flytectl/** | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
install-script: | ||
name: Install script | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- v0.8.20 | ||
- latest | ||
# Test the case where no version is specified | ||
- " " | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
chmod +x ./flytectl/install.sh | ||
./flytectl/install.sh ${{ matrix.version }} | ||
./bin/flytectl version | ||