Skip to content

Commit

Permalink
Install CTLPTL and K3D in the CI for the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edenreich committed Jun 18, 2024
1 parent f376771 commit d002735
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,15 @@ jobs:
with:
version: 3.x

- name: Install ctlptl
run: |
CTLPTL_VERSION="0.8.29"
curl -fsSL https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.linux.x86_64.tar.gz | sudo tar -xzv -C /usr/local/bin ctlptl
- name: Install k3d
run: |
K3D_VERSION="5.6.3"
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=v$K3D_VERSION bash
- name: Test
run: task test

0 comments on commit d002735

Please sign in to comment.