-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Continues Integration (Master) | ||
|
||
on: | ||
wokflow_dispatch: | ||
pull_request: | ||
branches-ignore: | ||
- master | ||
- main | ||
- gh-pages | ||
schedule: | ||
# “At 00:00 on every 7th day-of-month from 1 through 31.” (https://crontab.guru) | ||
- cron: "0 0 1/7 * *"jobs: | ||
|
||
verify: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: SCM Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/python-environment@main | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Run all checks | ||
run: echo "Stub: This needs to call the checks in the future" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Continues Integration (PR) | ||
|
||
on: | ||
pull_request: | ||
branches-ignore: | ||
- master | ||
- main | ||
- "Test-Automation" | ||
|
||
verify: | ||
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: | ||
python-version: "3.11" | ||
|
||
- name: Run all checks | ||
run: echo "Stub: This needs to call the checks in the future" |