Skip to content

Added CI/CD for code interpreter template #59

Added CI/CD for code interpreter template

Added CI/CD for code interpreter template #59

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 }}
inputs:

Check failure on line 21 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: 21, Col: 5): Unexpected value 'inputs' .github/workflows/pull_request.yml (Line: 31, Col: 5): Unexpected value 'inputs'
E2B_DOMAIN: ${{ secrets.E2B_DOMAIN }}
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 }}
inputs:
E2B_DOMAIN: ${{ secrets.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 }}
inputs:
E2B_DOMAIN: ${{ secrets.E2B_DOMAIN }}
E2B_CI_TEMPLATE: ${{ vars.E2B_CI_TEMPLATE }}
charts-tests:
uses: ./.github/workflows/charts_tests.yml