Skip to content

refactor(tests): Unify e2e-core and e2e-optional into tests/e2e #6

refactor(tests): Unify e2e-core and e2e-optional into tests/e2e

refactor(tests): Unify e2e-core and e2e-optional into tests/e2e #6

Workflow file for this run

name: CI Dev
on:
push:
branches:
- dev
pull_request:
branches:
- dev
workflow_dispatch:
inputs:
run_optional:
description: "Run optional e2e suites (overrides repo variable)"
required: false
default: "false"
type: choice
options:
- "false"
- "true"
permissions:
contents: read
jobs:
ci:
uses: ./.github/workflows/reusable-ci.yml
with:
stream: dev
run_e2e: true
run_optional: ${{ fromJSON((github.event_name == 'workflow_dispatch' && github.event.inputs.run_optional) || vars.CI_RUN_OPTIONAL || 'false') }}
go_version: "1.24.13"