diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 8569fd5..66b9d54 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -7,3 +7,6 @@ jobs: verify: uses: ./.github/workflows/checks.yml + + examples: + uses: ./.github/workflows/examples.yml diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 364b640..bc7a3cc 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -1,27 +1,18 @@ name: Examples on: - push: - paths: - - "**.py" - - "**.yml" - pull_request: - - workflow_dispatch: + workflow_call: jobs: - examples: - name: "Build with Python ${{ matrix.python-version }} and Exasol 7.1.17" + run-examples: + name: Run Examples runs-on: ubuntu-20.04 - timeout-minutes: 30 strategy: fail-fast: false matrix: python-version: ["3.11"] - - steps: - name: "Checkout repo" uses: actions/checkout@v2