Added python toolbox #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |