Skip to content

Commit

Permalink
Fix syntax in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Feb 5, 2024
1 parent 3ee9aeb commit d7c8baf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: Continues Integration (Master)

on:
wokflow_dispatch:
workflow_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:
- cron: "0 0 1/7 * *"

jobs:

verify:
runs-on: ubuntu-latest
Expand All @@ -25,4 +27,5 @@ on:
python-version: "3.11"

- name: Run all checks
run: echo "Stub: This needs to call the checks in the future"
run: |
echo "Stub: This needs to call the checks in the future"
5 changes: 4 additions & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
- main
- "Test-Automation"

jobs:

verify:
runs-on: ubuntu-latest

Expand All @@ -21,4 +23,5 @@ on:
python-version: "3.11"

- name: Run all checks
run: echo "Stub: This needs to call the checks in the future"
run: |
echo "Stub: This needs to call the checks in the future"

0 comments on commit d7c8baf

Please sign in to comment.