Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/js-sdk-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Test JS SDK

on: [workflow_call]
on:
workflow_call:
secrets:
E2B_API_KEY:
required: true
description: 'E2B API key for testing'

jobs:
integration_tests:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ on:
jobs:
js-sdk:
uses: ./.github/workflows/js-sdk-tests.yml
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
python-sdk:
uses: ./.github/workflows/python-sdk-tests.yml
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
7 changes: 6 additions & 1 deletion .github/workflows/python-sdk-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Test Python SDK

on: [workflow_call]
on:
workflow_call:
secrets:
E2B_API_KEY:
required: true
description: 'E2B API key for testing'

jobs:
integration_tests:
Expand Down