Skip to content

Commit

Permalink
fix: issue with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 27, 2024
1 parent 63d9bde commit 41ea29d
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/cdk-e2e.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CDK E2E Tests
name: Test

on:
pull_request:
Expand All @@ -24,8 +24,20 @@ jobs:
with:
go-version: 1.22.x

- name: Install kurtosis-cdk tools
uses: ./kurtosis-cdk/.github/actions/setup-kurtosis-cdk
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# This step will only execute if the necessary secrets are available, preventing failures
# on pull requests from forked repositories.
if: ${{ env.DOCKERHUB_USERNAME && env.DOCKERHUB_TOKEN }}
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk

- name: Install polycli
run: |
Expand Down

0 comments on commit 41ea29d

Please sign in to comment.