Fetch flytectl from monorepo #11
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
name: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test-install-flytectl: | |
name: Install latest version of flytectl | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Install latest version | |
id: test-latest-version | |
uses: ./ | |
- run: | | |
flytectl version | |
test-install-pinned-flytectl: | |
name: Install pinned version of flytectl | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Install pinned version | |
id: test-pinned-version | |
uses: ./ | |
with: | |
version: 'v0.8.20' | |
- run: | | |
flytectl version |