Skip to content

Refactor workflows to enable requiring tests in PRs #1

Refactor workflows to enable requiring tests in PRs

Refactor workflows to enable requiring tests in PRs #1

Workflow file for this run

name: Pull Request
permissions:
contents: read
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
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 }}
cli:
uses: ./.github/workflows/cli_tests.yml
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}

Check failure on line 26 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pull_request.yml (Line: 26, Col: 20): Invalid secret, E2B_API_KEY is not defined in the referenced workflow.