Skip to content

Added CI/CD for code interpreter template #62

Added CI/CD for code interpreter template

Added CI/CD for code interpreter template #62

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:
branches:
- main
jobs:
build-template:
uses: ./.github/workflows/build_template.yml
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
with:
E2B_DOMAIN: ${{ vars.E2B_DOMAIN }}

Check failure on line 22 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: 22, Col: 19): Invalid input, E2B_DOMAIN is not defined in the referenced workflow. .github/workflows/pull_request.yml (Line: 23, Col: 24): Invalid input, E2B_CI_TEMPLATE is not defined in the referenced workflow.
E2B_CI_TEMPLATE: ${{ vars.E2B_CI_TEMPLATE }}
E2B_TEMPLATE_CONFIG: ${{ vars.E2B_TEMPLATE_CONFIG }}
js-sdk:
uses: ./.github/workflows/js_tests.yml
needs: build-template
if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
with:
E2B_DOMAIN: ${{ vars.E2B_DOMAIN }}
E2B_CI_TEMPLATE: ${{ vars.E2B_CI_TEMPLATE }}
python-sdk:
uses: ./.github/workflows/python_tests.yml
needs: build-template
if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')
secrets:
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
with:
E2B_DOMAIN: ${{ vars.E2B_DOMAIN }}
E2B_CI_TEMPLATE: ${{ vars.E2B_CI_TEMPLATE }}
charts-tests:
uses: ./.github/workflows/charts_tests.yml