Skip to content

Commit

Permalink
May 23rd workflow experiment 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed May 23, 2024
1 parent 0d67aad commit a60a75e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/branch-protection.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Branch Protection

# This workflow can be added used to allow merging to branch "main" only if
# the workflow has been executed successfully.

jobs:
protect:
name: Protect
run: true
3 changes: 2 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Checks
name: Run Tests

on:
workflow_call:
Expand All @@ -8,6 +8,7 @@ on:
default: false
python-verson:
type: string
# required: true
default: "3.10"
exasol-verson:
type: string
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/slow-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Checks

on: workflow_call

jobs:
tests-job:
uses: ./.github/workflows/run-tests.yml
with:
slow-tests: true
python-version: "3.10"
exasol-version: "7.1.9"
secrets: inherit

0 comments on commit a60a75e

Please sign in to comment.