#140: Created nightly workflows #140
Workflow file for this run
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@v4 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: "3.10" | |
- 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)" ] |