Refactor: use upstream udf-runner-cpp base for Python VM #18
This file contains hidden or 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: OFT Report | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Python & Poetry Environment | |
| uses: exasol/python-toolbox/.github/actions/python-environment@v6 | |
| with: | |
| python-version: "3.10" | |
| poetry-version: "2.3.0" | |
| - name: Run HTML Report | |
| run: | | |
| poetry run -- nox -s run-oft-html -- oft_report.html || echo failed | |
| - name: Run Plaintext Report | |
| run: | | |
| poetry run nox -s run-oft | |
| - uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: "oft_report.html" | |
| path: oft_report.html |