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 1009c96 commit e98e6e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ on:
- 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 e98e6e6

Please sign in to comment.