Skip to content

Added python toolbox #2

Added python toolbox

Added python toolbox #2

Workflow file for this run

name: Build Matrix (Exasol)
on:
pull_request:
workflow_call:
outputs:
matrix:
description: "Generates the exasol version build matrix"
value: ${{ jobs.exasol_versions.outputs.matrix }}
jobs:
exasol_versions:
runs-on: ubuntu-latest
steps:
- name: SCM Checkout
uses: actions/checkout@v4
- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/[email protected]
with:
poetry-version: 2.0.1
- name: Generate matrix
run: poetry run nox -s matrix:exasol
- id: set-matrix
run: |
echo "matrix=$(poetry run nox -s matrix:exasol)" >> $GITHUB_OUTPUT
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}