Skip to content

Commit

Permalink
Add ci.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed May 15, 2024
1 parent d48d2b7 commit f782623
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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: ./

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'

0 comments on commit f782623

Please sign in to comment.