Skip to content

Commit

Permalink
Move Checkout step outside action.yaml file
Browse files Browse the repository at this point in the history
Signed-off-by: sailesh duddupudi <[email protected]>
  • Loading branch information
saileshd1402 committed Dec 2, 2024
1 parent c75cc42 commit 1fff255
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ jobs:
python-version: "3.10"

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup E2E Tests
uses: ./.github/workflows/setup-e2e-test
with:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/setup-e2e-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ inputs:
runs:
using: composite
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Free-Up Disk Space
uses: ./.github/workflows/free-up-disk-space

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-example-notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
kubernetes-version: ["v1.28.7"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup E2E Tests
uses: ./.github/workflows/setup-e2e-test
with:
Expand Down

0 comments on commit 1fff255

Please sign in to comment.