Added docker-udf-client.yaml lima vm template (#585) #271
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
| # ---- AUTOMATICALLY GENERATED FILE ---- | |
| # ---- DO NOT EDIT MANUALLY, BUT USE PYTHON MODULE "exasol.slc_ci_setup" ---- | |
| # ---- from https://github.com/exasol/script-languages-container-ci-setup TO UPDATE ---- | |
| name: SLC-CI-Self-Check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - main | |
| pull_request: | |
| jobs: | |
| Check-SLC-Github-Workflows-For-Updates: | |
| name: Check SLC Github workflows for updates | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: SCM Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Python & Poetry Environment | |
| uses: exasol/python-toolbox/.github/actions/python-environment@v5 | |
| with: | |
| python-version: "3.10" | |
| poetry-version: "2.3.0" | |
| - name: Update Github workflow files | |
| run: poetry run -- nox -s update-ci-github-workflows | |
| - name: Check Git status | |
| run: | | |
| git status --porcelain=v1 -uno | |
| git diff --cached; git diff --cached --summary; | |
| [ -z "$(git status --porcelain=v1 -uno 2>/dev/null)" ] |